[−][src]Struct sqs_lambda::sqs_completion_handler::SqsCompletionHandlerActor
Methods
impl<CE, ProcErr, SqsT> SqsCompletionHandlerActor<CE, ProcErr, SqsT> where
CE: Send + Sync + Clone + 'static,
ProcErr: Debug + Send + Sync + Clone + 'static,
SqsT: Sqs + Clone + Send + Sync + 'static, [src]
CE: Send + Sync + Clone + 'static,
ProcErr: Debug + Send + Sync + Clone + 'static,
SqsT: Sqs + Clone + Send + Sync + 'static,
pub fn new<CPE, CP, Payload, EE, OA, CacheT>(
actor_impl: SqsCompletionHandler<SqsT, CPE, CP, CE, Payload, EE, OA, CacheT, ProcErr>
) -> (Self, JoinHandle<()>) where
SqsT: Sqs + Clone + Send + Sync + 'static,
CPE: Debug + Send + Sync + 'static,
CP: CompletionEventSerializer<CompletedEvent = CE, Output = Payload, Error = CPE> + Send + Sync + 'static,
Payload: Send + Sync + 'static,
EE: EventEmitter<Event = Payload> + Send + Sync + 'static,
OA: Fn(SqsCompletionHandlerActor<CE, ProcErr, SqsT>, Result<String, String>) + Send + Sync + 'static,
CacheT: Cache<ProcErr> + Send + Sync + Clone + 'static, [src]
actor_impl: SqsCompletionHandler<SqsT, CPE, CP, CE, Payload, EE, OA, CacheT, ProcErr>
) -> (Self, JoinHandle<()>) where
SqsT: Sqs + Clone + Send + Sync + 'static,
CPE: Debug + Send + Sync + 'static,
CP: CompletionEventSerializer<CompletedEvent = CE, Output = Payload, Error = CPE> + Send + Sync + 'static,
Payload: Send + Sync + 'static,
EE: EventEmitter<Event = Payload> + Send + Sync + 'static,
OA: Fn(SqsCompletionHandlerActor<CE, ProcErr, SqsT>, Result<String, String>) + Send + Sync + 'static,
CacheT: Cache<ProcErr> + Send + Sync + Clone + 'static,
pub async fn release(self)[src]
pub async fn mark_complete<'_>(
&'_ self,
msg: SqsMessage,
completed: OutputEvent<CE, ProcErr>
)[src]
&'_ self,
msg: SqsMessage,
completed: OutputEvent<CE, ProcErr>
)
Trait Implementations
impl<CE, ProcErr, SqsT> Clone for SqsCompletionHandlerActor<CE, ProcErr, SqsT> where
CE: Send + Sync + Clone + 'static,
ProcErr: Debug + Send + Sync + Clone + 'static,
SqsT: Sqs + Clone + Send + Sync + 'static, [src]
CE: Send + Sync + Clone + 'static,
ProcErr: Debug + Send + Sync + Clone + 'static,
SqsT: Sqs + Clone + Send + Sync + 'static,
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<CE, ProcErr, SqsT> CompletionHandler for SqsCompletionHandlerActor<CE, ProcErr, SqsT> where
CE: Send + Sync + Clone + 'static,
ProcErr: Debug + Send + Sync + Clone + 'static,
SqsT: Sqs + Clone + Send + Sync + 'static, [src]
CE: Send + Sync + Clone + 'static,
ProcErr: Debug + Send + Sync + Clone + 'static,
SqsT: Sqs + Clone + Send + Sync + 'static,
type Message = SqsMessage
type CompletedEvent = OutputEvent<CE, ProcErr>
fn mark_complete<'life0, 'async_trait>(
&'life0 self,
msg: Self::Message,
completed_event: Self::CompletedEvent
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait, [src]
&'life0 self,
msg: Self::Message,
completed_event: Self::CompletedEvent
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn ack_all<'life0, 'async_trait>(
&'life0 self,
notify: Option<Sender<()>>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait, [src]
&'life0 self,
notify: Option<Sender<()>>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn release<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
Self: 'async_trait, [src]
self
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
Self: 'async_trait,
impl<CE, ProcErr, SqsT> Drop for SqsCompletionHandlerActor<CE, ProcErr, SqsT> where
CE: Send + Sync + Clone + 'static,
ProcErr: Debug + Send + Sync + Clone + 'static,
SqsT: Sqs + Clone + Send + Sync + 'static, [src]
CE: Send + Sync + Clone + 'static,
ProcErr: Debug + Send + Sync + Clone + 'static,
SqsT: Sqs + Clone + Send + Sync + 'static,
Auto Trait Implementations
impl<CE, ProcErr, SqsT> !RefUnwindSafe for SqsCompletionHandlerActor<CE, ProcErr, SqsT>
impl<CE, ProcErr, SqsT> Send for SqsCompletionHandlerActor<CE, ProcErr, SqsT>
impl<CE, ProcErr, SqsT> Sync for SqsCompletionHandlerActor<CE, ProcErr, SqsT>
impl<CE, ProcErr, SqsT> Unpin for SqsCompletionHandlerActor<CE, ProcErr, SqsT>
impl<CE, ProcErr, SqsT> !UnwindSafe for SqsCompletionHandlerActor<CE, ProcErr, SqsT>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Any for T where
T: Any,
T: Any,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> CloneAny for T where
T: Clone + Any,
T: Clone + Any,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,