pub struct WasmEdgeProcessor {
pub id: String,
pub runtime: WasmRuntime,
pub modules: Arc<RwLock<HashMap<String, WasmModule>>>,
pub execution_context: WasmExecutionContext,
pub resource_manager: WasmResourceManager,
pub security_manager: WasmSecurityManager,
}Expand description
WebAssembly edge processor for distributed streaming
Fields§
§id: String§runtime: WasmRuntime§modules: Arc<RwLock<HashMap<String, WasmModule>>>§execution_context: WasmExecutionContext§resource_manager: WasmResourceManager§security_manager: WasmSecurityManagerImplementations§
Source§impl WasmEdgeProcessor
impl WasmEdgeProcessor
Sourcepub fn new(id: String, runtime: WasmRuntime) -> Self
pub fn new(id: String, runtime: WasmRuntime) -> Self
Create a new WebAssembly edge processor
Sourcepub async fn load_module(&self, module: WasmModule) -> StreamResult<()>
pub async fn load_module(&self, module: WasmModule) -> StreamResult<()>
Load a WebAssembly module
Sourcepub async fn process_event(
&self,
event: StreamEvent,
module_id: &str,
function_name: &str,
) -> StreamResult<Vec<StreamEvent>>
pub async fn process_event( &self, event: StreamEvent, module_id: &str, function_name: &str, ) -> StreamResult<Vec<StreamEvent>>
Process stream event using WebAssembly module
Sourcepub async fn deploy_to_edge(
&self,
module_id: &str,
target_location: EdgeLocation,
) -> StreamResult<String>
pub async fn deploy_to_edge( &self, module_id: &str, target_location: EdgeLocation, ) -> StreamResult<String>
Deploy module to edge location
Auto Trait Implementations§
impl !RefUnwindSafe for WasmEdgeProcessor
impl !UnwindSafe for WasmEdgeProcessor
impl Freeze for WasmEdgeProcessor
impl Send for WasmEdgeProcessor
impl Sync for WasmEdgeProcessor
impl Unpin for WasmEdgeProcessor
impl UnsafeUnpin for WasmEdgeProcessor
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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>
Converts
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>
Converts
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 moreimpl<T> MaybeDebug for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.