chalk-client 0.1.0

Rust client SDK for the Chalk feature store
Documentation
// This file is @generated by prost-build.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct PingRequest {
    #[prost(int32, tag = "1")]
    pub num: i32,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct PingResponse {
    #[prost(int32, tag = "1")]
    pub num: i32,
}
/// Generated client implementations.
pub mod query_service_client {
    #![allow(
        unused_variables,
        dead_code,
        missing_docs,
        clippy::wildcard_imports,
        clippy::let_unit_value,
    )]
    use tonic::codegen::*;
    use tonic::codegen::http::Uri;
    #[derive(Debug, Clone)]
    pub struct QueryServiceClient<T> {
        inner: tonic::client::Grpc<T>,
    }
    impl QueryServiceClient<tonic::transport::Channel> {
        /// Attempt to create a new client by connecting to a given endpoint.
        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> QueryServiceClient<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,
        ) -> QueryServiceClient<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,
        {
            QueryServiceClient::new(InterceptedService::new(inner, interceptor))
        }
        /// Compress requests with the given encoding.
        ///
        /// This requires the server to support it otherwise it might respond with an
        /// error.
        #[must_use]
        pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.inner = self.inner.send_compressed(encoding);
            self
        }
        /// Enable decompressing responses.
        #[must_use]
        pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.inner = self.inner.accept_compressed(encoding);
            self
        }
        /// Limits the maximum size of a decoded message.
        ///
        /// Default: `4MB`
        #[must_use]
        pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
            self.inner = self.inner.max_decoding_message_size(limit);
            self
        }
        /// Limits the maximum size of an encoded message.
        ///
        /// Default: `usize::MAX`
        #[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 ping(
            &mut self,
            request: impl tonic::IntoRequest<super::PingRequest>,
        ) -> std::result::Result<tonic::Response<super::PingResponse>, 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(
                "/chalk.engine.v1.QueryService/Ping",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(GrpcMethod::new("chalk.engine.v1.QueryService", "Ping"));
            self.inner.unary(req, path, codec).await
        }
        pub async fn online_query(
            &mut self,
            request: impl tonic::IntoRequest<
                super::super::super::common::v1::OnlineQueryRequest,
            >,
        ) -> std::result::Result<
            tonic::Response<super::super::super::common::v1::OnlineQueryResponse>,
            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(
                "/chalk.engine.v1.QueryService/OnlineQuery",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(GrpcMethod::new("chalk.engine.v1.QueryService", "OnlineQuery"));
            self.inner.unary(req, path, codec).await
        }
        pub async fn online_query_bulk(
            &mut self,
            request: impl tonic::IntoRequest<
                super::super::super::common::v1::OnlineQueryBulkRequest,
            >,
        ) -> std::result::Result<
            tonic::Response<super::super::super::common::v1::OnlineQueryBulkResponse>,
            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(
                "/chalk.engine.v1.QueryService/OnlineQueryBulk",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new("chalk.engine.v1.QueryService", "OnlineQueryBulk"),
                );
            self.inner.unary(req, path, codec).await
        }
        pub async fn online_query_multi(
            &mut self,
            request: impl tonic::IntoRequest<
                super::super::super::common::v1::OnlineQueryMultiRequest,
            >,
        ) -> std::result::Result<
            tonic::Response<super::super::super::common::v1::OnlineQueryMultiResponse>,
            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(
                "/chalk.engine.v1.QueryService/OnlineQueryMulti",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new("chalk.engine.v1.QueryService", "OnlineQueryMulti"),
                );
            self.inner.unary(req, path, codec).await
        }
        pub async fn upload_features_bulk(
            &mut self,
            request: impl tonic::IntoRequest<
                super::super::super::common::v1::UploadFeaturesBulkRequest,
            >,
        ) -> std::result::Result<
            tonic::Response<super::super::super::common::v1::UploadFeaturesBulkResponse>,
            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(
                "/chalk.engine.v1.QueryService/UploadFeaturesBulk",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new("chalk.engine.v1.QueryService", "UploadFeaturesBulk"),
                );
            self.inner.unary(req, path, codec).await
        }
        pub async fn upload_features(
            &mut self,
            request: impl tonic::IntoRequest<
                super::super::super::common::v1::UploadFeaturesRequest,
            >,
        ) -> std::result::Result<
            tonic::Response<super::super::super::common::v1::UploadFeaturesResponse>,
            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(
                "/chalk.engine.v1.QueryService/UploadFeatures",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new("chalk.engine.v1.QueryService", "UploadFeatures"),
                );
            self.inner.unary(req, path, codec).await
        }
        /// PlanAggregateBackfill determines the estimated resources needed to backfill
        /// an aggregate.
        ///
        /// This method is a duplicate of the PlanAggregateBackfill method
        /// in the query_server.proto file. We should remove the query_server.proto method
        /// and move that request to this service instead.
        /// buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
        pub async fn plan_aggregate_backfill(
            &mut self,
            request: impl tonic::IntoRequest<
                super::super::super::aggregate::v1::PlanAggregateBackfillRequest,
            >,
        ) -> std::result::Result<
            tonic::Response<
                super::super::super::aggregate::v1::PlanAggregateBackfillResponse,
            >,
            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(
                "/chalk.engine.v1.QueryService/PlanAggregateBackfill",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "chalk.engine.v1.QueryService",
                        "PlanAggregateBackfill",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
        /// This method is a duplicate of the PlanAggregateBackfill method
        /// in the query_server.proto file. We should remove the query_server.proto method
        /// and move that request to this service instead.
        /// buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
        pub async fn get_aggregates(
            &mut self,
            request: impl tonic::IntoRequest<
                super::super::super::aggregate::v1::GetAggregatesRequest,
            >,
        ) -> std::result::Result<
            tonic::Response<super::super::super::aggregate::v1::GetAggregatesResponse>,
            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(
                "/chalk.engine.v1.QueryService/GetAggregates",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new("chalk.engine.v1.QueryService", "GetAggregates"),
                );
            self.inner.unary(req, path, codec).await
        }
    }
}