Trait proxy_sdk::StreamControl
source · pub trait StreamControl {
// Required method
fn attributes(&self) -> &Attributes;
// Provided methods
fn resume_downstream(&self) { ... }
fn close_downstream(&self) { ... }
fn resume_upstream(&self) { ... }
fn close_upstream(&self) { ... }
}
Expand description
Defines control functions for streams
Required Methods§
sourcefn attributes(&self) -> &Attributes
fn attributes(&self) -> &Attributes
Retrieve attributes for the stream data
Provided Methods§
sourcefn resume_downstream(&self)
fn resume_downstream(&self)
TODO: UNKNOWN PURPOSE
sourcefn close_downstream(&self)
fn close_downstream(&self)
TODO: UNKNOWN PURPOSE
sourcefn resume_upstream(&self)
fn resume_upstream(&self)
TODO: UNKNOWN PURPOSE
sourcefn close_upstream(&self)
fn close_upstream(&self)
TODO: UNKNOWN PURPOSE