Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/carllerche/kabuki
/ functions
Functions
24 in github.com/carllerche/kabuki
⨍
Functions
24
◇
Types & classes
13
↓ 6 callers
Method
call
(&mut self, req: Self::Request)
src/lib.rs:276
↓ 4 callers
Method
poll
(&mut self)
src/lib.rs:341
↓ 3 callers
Method
spawn_fn
Spawn the given closure as an actor
src/lib.rs:238
↓ 1 callers
Function
actor_fn
Returns an `Actor` backed by the given closure.
src/lib.rs:184
↓ 1 callers
Method
as_pub
(&self)
src/lib.rs:558
↓ 1 callers
Method
clone
(&self)
src/lib.rs:324
↓ 1 callers
Method
is_call_ready
(&mut self)
src/lib.rs:457
↓ 1 callers
Method
is_running
(&self)
src/lib.rs:551
↓ 1 callers
Method
pair
(self, actor: A)
src/lib.rs:247
↓ 1 callers
Method
poll_actor
(&mut self)
src/lib.rs:408
↓ 1 callers
Method
poll_pending
(&mut self)
src/lib.rs:385
↓ 1 callers
Method
poll_ready
Returns `Async::Ready` when the actor can accept a new request
src/lib.rs:291
↓ 1 callers
Method
push_processing
(&mut self, processing: Processing<A>)
src/lib.rs:466
↓ 1 callers
Method
remove_processing
(&mut self, idx: usize)
src/lib.rs:485
↓ 1 callers
Method
spawn
Spawn a new actor
src/lib.rs:227
Function
actor_ref_is_clone_and_send
()
tests/test_actor.rs:53
Method
from
(_: CallError<T>)
src/lib.rs:573
Method
inbox_capacity
Sets the actor's inbox queue capacity. The default value is 1024.
src/lib.rs:212
Method
max_in_flight
Sets the max number of in-flight requests the actor can process concurrently. The default value is 16
src/lib.rs:221
Function
multiple_request_response
()
tests/test_actor.rs:29
Method
new
Returns a new actor `Builder` with default settings
src/lib.rs:202
Method
poll
Poll the `Actor` to see if it has completed processing. Allows the actor to advance its internal state without receiving a message. For example, if t
src/lib.rs:59
Method
poll_ready
Indicates that the actor is ready to process the next inbox message Before the `ActorCell` attempts to read a message off the inbox, it will call thi
src/lib.rs:72
Function
simple_request_response
()
tests/test_actor.rs:13