#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct StartScavengeReq {
#[prost(message, optional, tag = "1")]
pub options: ::core::option::Option<start_scavenge_req::Options>,
}
pub mod start_scavenge_req {
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Options {
#[prost(int32, tag = "1")]
pub thread_count: i32,
#[prost(int32, tag = "2")]
pub start_from_chunk: i32,
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StopScavengeReq {
#[prost(message, optional, tag = "1")]
pub options: ::core::option::Option<stop_scavenge_req::Options>,
}
pub mod stop_scavenge_req {
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Options {
#[prost(string, tag = "1")]
pub scavenge_id: ::prost::alloc::string::String,
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ScavengeResp {
#[prost(string, tag = "1")]
pub scavenge_id: ::prost::alloc::string::String,
#[prost(enumeration = "scavenge_resp::ScavengeResult", tag = "2")]
pub scavenge_result: i32,
}
pub mod scavenge_resp {
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ScavengeResult {
Started = 0,
InProgress = 1,
Stopped = 2,
}
impl ScavengeResult {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Started => "Started",
Self::InProgress => "InProgress",
Self::Stopped => "Stopped",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"Started" => Some(Self::Started),
"InProgress" => Some(Self::InProgress),
"Stopped" => Some(Self::Stopped),
_ => None,
}
}
}
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct SetNodePriorityReq {
#[prost(int32, tag = "1")]
pub priority: i32,
}
pub mod operations_client {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value
)]
use tonic::codegen::http::Uri;
use tonic::codegen::*;
#[derive(Debug, Clone)]
pub struct OperationsClient<T> {
inner: tonic::client::Grpc<T>,
}
impl OperationsClient<tonic::transport::Channel> {
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> OperationsClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> OperationsClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + std::marker::Send + std::marker::Sync,
{
OperationsClient::new(InterceptedService::new(inner, interceptor))
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
pub async fn start_scavenge(
&mut self,
request: impl tonic::IntoRequest<super::StartScavengeReq>,
) -> std::result::Result<tonic::Response<super::ScavengeResp>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::unknown(format!("Service was not ready: {}", e.into()))
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/event_store.client.operations.Operations/StartScavenge",
);
let mut req = request.into_request();
req.extensions_mut().insert(GrpcMethod::new(
"event_store.client.operations.Operations",
"StartScavenge",
));
self.inner.unary(req, path, codec).await
}
pub async fn stop_scavenge(
&mut self,
request: impl tonic::IntoRequest<super::StopScavengeReq>,
) -> std::result::Result<tonic::Response<super::ScavengeResp>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::unknown(format!("Service was not ready: {}", e.into()))
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/event_store.client.operations.Operations/StopScavenge",
);
let mut req = request.into_request();
req.extensions_mut().insert(GrpcMethod::new(
"event_store.client.operations.Operations",
"StopScavenge",
));
self.inner.unary(req, path, codec).await
}
pub async fn shutdown(
&mut self,
request: impl tonic::IntoRequest<()>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::unknown(format!("Service was not ready: {}", e.into()))
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/event_store.client.operations.Operations/Shutdown",
);
let mut req = request.into_request();
req.extensions_mut().insert(GrpcMethod::new(
"event_store.client.operations.Operations",
"Shutdown",
));
self.inner.unary(req, path, codec).await
}
pub async fn merge_indexes(
&mut self,
request: impl tonic::IntoRequest<()>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::unknown(format!("Service was not ready: {}", e.into()))
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/event_store.client.operations.Operations/MergeIndexes",
);
let mut req = request.into_request();
req.extensions_mut().insert(GrpcMethod::new(
"event_store.client.operations.Operations",
"MergeIndexes",
));
self.inner.unary(req, path, codec).await
}
pub async fn resign_node(
&mut self,
request: impl tonic::IntoRequest<()>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::unknown(format!("Service was not ready: {}", e.into()))
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/event_store.client.operations.Operations/ResignNode",
);
let mut req = request.into_request();
req.extensions_mut().insert(GrpcMethod::new(
"event_store.client.operations.Operations",
"ResignNode",
));
self.inner.unary(req, path, codec).await
}
pub async fn set_node_priority(
&mut self,
request: impl tonic::IntoRequest<super::SetNodePriorityReq>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::unknown(format!("Service was not ready: {}", e.into()))
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/event_store.client.operations.Operations/SetNodePriority",
);
let mut req = request.into_request();
req.extensions_mut().insert(GrpcMethod::new(
"event_store.client.operations.Operations",
"SetNodePriority",
));
self.inner.unary(req, path, codec).await
}
pub async fn restart_persistent_subscriptions(
&mut self,
request: impl tonic::IntoRequest<()>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::unknown(format!("Service was not ready: {}", e.into()))
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/event_store.client.operations.Operations/RestartPersistentSubscriptions",
);
let mut req = request.into_request();
req.extensions_mut().insert(GrpcMethod::new(
"event_store.client.operations.Operations",
"RestartPersistentSubscriptions",
));
self.inner.unary(req, path, codec).await
}
}
}