pub mod publisher {
use crate::Result;
#[derive(Clone, Debug)]
pub(crate) struct RequestBuilder<R: std::default::Default> {
stub: std::sync::Arc<dyn super::super::stub::dynamic::Publisher>,
request: R,
options: crate::RequestOptions,
}
impl<R> RequestBuilder<R>
where
R: std::default::Default,
{
pub(crate) fn new(
stub: std::sync::Arc<dyn super::super::stub::dynamic::Publisher>,
) -> Self {
Self {
stub,
request: R::default(),
options: crate::RequestOptions::default(),
}
}
}
#[derive(Clone, Debug)]
pub(crate) struct Publish(RequestBuilder<crate::model::PublishRequest>);
impl Publish {
pub(crate) fn new(
stub: std::sync::Arc<dyn super::super::stub::dynamic::Publisher>,
) -> Self {
Self(RequestBuilder::new(stub))
}
pub fn with_request<V: Into<crate::model::PublishRequest>>(mut self, v: V) -> Self {
self.0.request = v.into();
self
}
pub fn with_options<V: Into<crate::RequestOptions>>(mut self, v: V) -> Self {
self.0.options = v.into();
self
}
pub async fn send(self) -> Result<crate::model::PublishResponse> {
(*self.0.stub)
.publish(self.0.request, self.0.options)
.await
.map(crate::Response::into_body)
}
pub fn set_topic<T: Into<std::string::String>>(mut self, v: T) -> Self {
self.0.request.topic = v.into();
self
}
pub fn set_messages<T, V>(mut self, v: T) -> Self
where
T: std::iter::IntoIterator<Item = V>,
V: std::convert::Into<crate::model::PubsubMessage>,
{
use std::iter::Iterator;
self.0.request.messages = v.into_iter().map(|i| i.into()).collect();
self
}
}
#[doc(hidden)]
impl crate::RequestBuilder for Publish {
fn request_options(&mut self) -> &mut crate::RequestOptions {
&mut self.0.options
}
}
}
pub mod subscriber {
use crate::Result;
#[derive(Clone, Debug)]
pub(crate) struct RequestBuilder<R: std::default::Default> {
stub: std::sync::Arc<dyn super::super::stub::dynamic::Subscriber>,
request: R,
options: crate::RequestOptions,
}
impl<R> RequestBuilder<R>
where
R: std::default::Default,
{
pub(crate) fn new(
stub: std::sync::Arc<dyn super::super::stub::dynamic::Subscriber>,
) -> Self {
Self {
stub,
request: R::default(),
options: crate::RequestOptions::default(),
}
}
}
#[derive(Clone, Debug)]
pub(crate) struct ModifyAckDeadline(RequestBuilder<crate::model::ModifyAckDeadlineRequest>);
impl ModifyAckDeadline {
pub(crate) fn new(
stub: std::sync::Arc<dyn super::super::stub::dynamic::Subscriber>,
) -> Self {
Self(RequestBuilder::new(stub))
}
pub fn with_request<V: Into<crate::model::ModifyAckDeadlineRequest>>(
mut self,
v: V,
) -> Self {
self.0.request = v.into();
self
}
pub fn with_options<V: Into<crate::RequestOptions>>(mut self, v: V) -> Self {
self.0.options = v.into();
self
}
pub async fn send(self) -> Result<()> {
(*self.0.stub)
.modify_ack_deadline(self.0.request, self.0.options)
.await
.map(crate::Response::into_body)
}
pub fn set_subscription<T: Into<std::string::String>>(mut self, v: T) -> Self {
self.0.request.subscription = v.into();
self
}
pub fn set_ack_ids<T, V>(mut self, v: T) -> Self
where
T: std::iter::IntoIterator<Item = V>,
V: std::convert::Into<std::string::String>,
{
use std::iter::Iterator;
self.0.request.ack_ids = v.into_iter().map(|i| i.into()).collect();
self
}
pub fn set_ack_deadline_seconds<T: Into<i32>>(mut self, v: T) -> Self {
self.0.request.ack_deadline_seconds = v.into();
self
}
}
#[doc(hidden)]
impl crate::RequestBuilder for ModifyAckDeadline {
fn request_options(&mut self) -> &mut crate::RequestOptions {
&mut self.0.options
}
}
#[derive(Clone, Debug)]
pub(crate) struct Acknowledge(RequestBuilder<crate::model::AcknowledgeRequest>);
impl Acknowledge {
pub(crate) fn new(
stub: std::sync::Arc<dyn super::super::stub::dynamic::Subscriber>,
) -> Self {
Self(RequestBuilder::new(stub))
}
pub fn with_request<V: Into<crate::model::AcknowledgeRequest>>(mut self, v: V) -> Self {
self.0.request = v.into();
self
}
pub fn with_options<V: Into<crate::RequestOptions>>(mut self, v: V) -> Self {
self.0.options = v.into();
self
}
pub async fn send(self) -> Result<()> {
(*self.0.stub)
.acknowledge(self.0.request, self.0.options)
.await
.map(crate::Response::into_body)
}
pub fn set_subscription<T: Into<std::string::String>>(mut self, v: T) -> Self {
self.0.request.subscription = v.into();
self
}
pub fn set_ack_ids<T, V>(mut self, v: T) -> Self
where
T: std::iter::IntoIterator<Item = V>,
V: std::convert::Into<std::string::String>,
{
use std::iter::Iterator;
self.0.request.ack_ids = v.into_iter().map(|i| i.into()).collect();
self
}
}
#[doc(hidden)]
impl crate::RequestBuilder for Acknowledge {
fn request_options(&mut self) -> &mut crate::RequestOptions {
&mut self.0.options
}
}
}