pub struct Client<C, M, R = Standard> { /* private fields */ }Expand description
An ergonomic service client for ChatService.
This client allows ergonomic access to a ChatService-shaped service.
Each method corresponds to an endpoint defined in the service’s Smithy model,
and the request and response shapes are auto-generated from that same model.
§Constructing a Client
To construct a client, you need a few different things:
- A
Configthat specifies additional configuration required by the service. - A connector (
C) that specifies how HTTP requests are translated into HTTP responses. This will typically be an HTTP client (likehyper), though you can also substitute in your own, like a mock mock connector for testing. - A “middleware” (
M) that modifies requests prior to them being sent to the request. Most commonly, middleware will decide what endpoint the requests should be sent to, as well as perform authentication and authorization of requests (such as SigV4). You can also have middleware that performs request/response tracing, throttling, or other middleware-like tasks. - A retry policy (
R) that dictates the behavior for requests that fail and should (potentially) be retried. The default type is generally what you want, as it implements a well-vetted retry policy implemented inRetryMode::Standard.
To construct a client, you will generally want to call
Client::with_config, which takes a aws_smithy_client::Client (a
Smithy client that isn’t specialized to a particular service),
and a Config. Both of these are constructed using
the builder pattern where you first construct a Builder type,
then configure it with the necessary parameters, and then call
build to construct the finalized output type. The
aws_smithy_client::Client builder is re-exported in this crate as
Builder for convenience.
In most circumstances, you will want to use the following pattern to construct a client:
use rivet_client_api_chat::{Builder, Client, Config};
let raw_client =
Builder::dyn_https()
.middleware(/* discussed below */)
.build();
let config = Config::builder().build();
let client = Client::with_config(raw_client, config);For the middleware, you’ll want to use whatever matches the routing, authentication and authorization required by the target service. For example, for the standard AWS SDK which uses SigV4-signed requests, the middleware looks like this:
use aws_endpoint::AwsEndpointStage;
use aws_http::auth::CredentialsStage;
use aws_http::recursion_detection::RecursionDetectionStage;
use aws_http::user_agent::UserAgentStage;
use aws_sig_auth::middleware::SigV4SigningStage;
use aws_sig_auth::signer::SigV4Signer;
use aws_smithy_client::retry::Config as RetryConfig;
use aws_smithy_http_tower::map_request::{AsyncMapRequestLayer, MapRequestLayer};
use std::fmt::Debug;
use tower::layer::util::{Identity, Stack};
use tower::ServiceBuilder;
type AwsMiddlewareStack = Stack<
MapRequestLayer<RecursionDetectionStage>,
Stack<
MapRequestLayer<SigV4SigningStage>,
Stack<
AsyncMapRequestLayer<CredentialsStage>,
Stack<
MapRequestLayer<UserAgentStage>,
Stack<MapRequestLayer<AwsEndpointStage>, Identity>,
>,
>,
>,
>;
/// AWS Middleware Stack
///
/// This implements the middleware stack for this service. It will:
/// 1. Load credentials asynchronously into the property bag
/// 2. Sign the request with SigV4
/// 3. Resolve an Endpoint for the request
/// 4. Add a user agent to the request
#[derive(Debug, Default, Clone)]
#[non_exhaustive]
pub struct AwsMiddleware;
impl AwsMiddleware {
/// Create a new `AwsMiddleware` stack
///
/// Note: `AwsMiddleware` holds no state.
pub fn new() -> Self {
AwsMiddleware::default()
}
}
// define the middleware stack in a non-generic location to reduce code bloat.
fn base() -> ServiceBuilder<AwsMiddlewareStack> {
let credential_provider = AsyncMapRequestLayer::for_mapper(CredentialsStage::new());
let signer = MapRequestLayer::for_mapper(SigV4SigningStage::new(SigV4Signer::new()));
let endpoint_resolver = MapRequestLayer::for_mapper(AwsEndpointStage);
let user_agent = MapRequestLayer::for_mapper(UserAgentStage::new());
let recursion_detection = MapRequestLayer::for_mapper(RecursionDetectionStage::new());
// These layers can be considered as occurring in order, that is:
// 1. Resolve an endpoint
// 2. Add a user agent
// 3. Acquire credentials
// 4. Sign with credentials
// (5. Dispatch over the wire)
ServiceBuilder::new()
.layer(endpoint_resolver)
.layer(user_agent)
.layer(credential_provider)
.layer(signer)
.layer(recursion_detection)
}
impl<S> tower::Layer<S> for AwsMiddleware {
type Service = <AwsMiddlewareStack as tower::Layer<S>>::Service;
fn layer(&self, inner: S) -> Self::Service {
base().service(inner)
}
}§Using a Client
Once you have a client set up, you can access the service’s endpoints
by calling the appropriate method on Client. Each such method
returns a request builder for that endpoint, with methods for setting
the various fields of the request. Once your request is complete, use
the send method to send the request. send returns a future, which
you then have to .await to get the service’s response.
Implementations§
Source§impl<C, M, R> Client<C, M, R>
impl<C, M, R> Client<C, M, R>
Sourcepub fn get_direct_thread(&self) -> GetDirectThread<C, M, R>
pub fn get_direct_thread(&self) -> GetDirectThread<C, M, R>
Constructs a fluent builder for the GetDirectThread operation.
- The fluent builder is configurable:
identity_id(impl Into<String>)/set_identity_id(Option<String>): A universally unique identifier.
- On success, responds with
GetDirectThreadOutputwith field(s):thread_id(Option<String>): A universally unique identifier.identity(Option<IdentityHandle>): An identity handle.
- On failure, responds with
SdkError<GetDirectThreadError>
Sourcepub fn get_thread_history(&self) -> GetThreadHistory<C, M, R>
pub fn get_thread_history(&self) -> GetThreadHistory<C, M, R>
Constructs a fluent builder for the GetThreadHistory operation.
- The fluent builder is configurable:
thread_id(impl Into<String>)/set_thread_id(Option<String>): A universally unique identifier.ts(i32)/set_ts(Option<i32>): Unsigned 32 bit integer.count(i32)/set_count(Option<i32>): How many messages to collect in each direction. If queryingrivet.api.chat.common#QueryDirection$before_and_after,rivet.api.chat.common#QueryDirection$chat_messageswill becount * 2.query_direction(QueryDirection)/set_query_direction(Option<QueryDirection>): Represents which direction to query messages from relative to the given timestamp.
- On success, responds with
GetThreadHistoryOutputwith field(s):chat_messages(Option<Vec<ChatMessage>>): Ordered old to new. If queryingrivet.api.chat.common#before_and_after, this will becount * 2long.
- On failure, responds with
SdkError<GetThreadHistoryError>
Sourcepub fn get_thread_topic(&self) -> GetThreadTopic<C, M, R>
pub fn get_thread_topic(&self) -> GetThreadTopic<C, M, R>
Constructs a fluent builder for the GetThreadTopic operation.
- The fluent builder is configurable:
thread_id(impl Into<String>)/set_thread_id(Option<String>): A universally unique identifier.
- On success, responds with
GetThreadTopicOutputwith field(s):topic(Option<ChatSimpleTopic>): Represents a topic of the given chat thread without the associated handles for the topic.
- On failure, responds with
SdkError<GetThreadTopicError>
Sourcepub fn send_chat_message(&self) -> SendChatMessage<C, M, R>
pub fn send_chat_message(&self) -> SendChatMessage<C, M, R>
Constructs a fluent builder for the SendChatMessage operation.
- The fluent builder is configurable:
topic(SendChatTopic)/set_topic(Option<SendChatTopic>): Topic to send a chat message to. If you already know the thread ID, usethread_id.message_body(SendMessageBody)/set_message_body(Option<SendMessageBody>): Data to send in a chat message.
- On success, responds with
SendChatMessageOutputwith field(s):chat_message_id(Option<String>): A universally unique identifier.
- On failure, responds with
SdkError<SendChatMessageError>
Sourcepub fn set_thread_read(&self) -> SetThreadRead<C, M, R>
pub fn set_thread_read(&self) -> SetThreadRead<C, M, R>
Constructs a fluent builder for the SetThreadRead operation.
- The fluent builder is configurable:
thread_id(impl Into<String>)/set_thread_id(Option<String>): A universally unique identifier.last_read_ts(i64)/set_last_read_ts(Option<i64>): Any messages newer than this timestamp will be marked as unread. This should be the current timestamp (in milliseconds).
- On success, responds with
SetThreadReadOutput - On failure, responds with
SdkError<SetThreadReadError>
Sourcepub fn set_typing_status(&self) -> SetTypingStatus<C, M, R>
pub fn set_typing_status(&self) -> SetTypingStatus<C, M, R>
Constructs a fluent builder for the SetTypingStatus operation.
- The fluent builder is configurable:
thread_id(impl Into<String>)/set_thread_id(Option<String>): A universally unique identifier.status(ChatTypingStatus)/set_status(Option<ChatTypingStatus>): Represents a chat typing status.
- On success, responds with
SetTypingStatusOutput - On failure, responds with
SdkError<SetTypingStatusError>
Sourcepub fn watch_thread(&self) -> WatchThread<C, M, R>
pub fn watch_thread(&self) -> WatchThread<C, M, R>
Constructs a fluent builder for the WatchThread operation.
- The fluent builder is configurable:
thread_id(impl Into<String>)/set_thread_id(Option<String>): A universally unique identifier.watch_index(impl Into<String>)/set_watch_index(Option<String>): A query parameter denoting the requests watch index.
- On success, responds with
WatchThreadOutputwith field(s):chat_messages(Option<Vec<ChatMessage>>): All messages new messages posted to this thread. Ordered old to new.typing_statuses(Option<Vec<ChatIdentityTypingStatus>>): All identities that are currently typing in this thread.watch(Option<WatchResponse>): Provided by watchable endpoints used in blocking loops.
- On failure, responds with
SdkError<WatchThreadError>
Trait Implementations§
Auto Trait Implementations§
impl<C, M, R> Freeze for Client<C, M, R>
impl<C, M, R = Standard> !RefUnwindSafe for Client<C, M, R>
impl<C, M, R> Send for Client<C, M, R>
impl<C, M, R> Sync for Client<C, M, R>
impl<C, M, R> Unpin for Client<C, M, R>
impl<C, M, R = Standard> !UnwindSafe for Client<C, M, R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more