pub struct SourceProxy { /* private fields */ }
Implementations§
source§impl SourceProxy
impl SourceProxy
sourcepub fn take_event_stream(&self) -> SourceEventStream
pub fn take_event_stream(&self) -> SourceEventStream
Get a Stream of events from the remote end of the Source protocol
Panics
Panics if the event stream was already taken.
sourcepub fn retire_buffer(&self, buffer: u64) -> Result<(), Error>
pub fn retire_buffer(&self, buffer: u64) -> Result<(), Error>
Notifies the Source
that the retriever is done reading from the buffer. If the Source
wishes it should zero the buffer’s contents and recycle it for future records. Buffers must
be re-sent via OnBufferInit
after they’re zeroed.
Trait Implementations§
source§impl Clone for SourceProxy
impl Clone for SourceProxy
source§fn clone(&self) -> SourceProxy
fn clone(&self) -> SourceProxy
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SourceProxy
impl Debug for SourceProxy
source§impl Proxy for SourceProxy
impl Proxy for SourceProxy
§type Protocol = SourceMarker
type Protocol = SourceMarker
The protocol which this
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more