[][src]Struct actix_redisactor::RedisActor

pub struct RedisActor { /* fields omitted */ }

Redis comminucation actor

Methods

impl RedisActor[src]

pub fn start<S: Into<String>>(addr: S, db: usize) -> Addr<RedisActor>[src]

Start new Supervisor with RedisActor.

Trait Implementations

impl Actor for RedisActor[src]

type Context = Context<Self>

Actor execution context type

fn stopping(&mut self, ctx: &mut Self::Context) -> Running[src]

Called after an actor is in Actor::Stopping state. Read more

fn stopped(&mut self, ctx: &mut Self::Context)[src]

Called after an actor is stopped. Read more

fn start(self) -> Addr<Self> where
    Self: Actor<Context = Context<Self>>, 
[src]

Start a new asynchronous actor, returning its address. Read more

fn start_default() -> Addr<Self> where
    Self: Actor<Context = Context<Self>> + Default
[src]

Construct and start a new asynchronous actor, returning its address. Read more

fn start_in_arbiter<F>(arb: &Arbiter, f: F) -> Addr<Self> where
    F: FnOnce(&mut Context<Self>) -> Self + Send + 'static,
    Self: Actor<Context = Context<Self>>, 
[src]

Start new actor in arbiter's thread.

fn create<F>(f: F) -> Addr<Self> where
    F: FnOnce(&mut Context<Self>) -> Self + 'static,
    Self: Actor<Context = Context<Self>>, 
[src]

Start a new asynchronous actor given a Context. Read more

impl Supervised for RedisActor[src]

impl Handler<Command> for RedisActor[src]

type Result = ResponseFuture<RespValue, Error>

The type of value that this handler will return.

impl StreamHandler<RespValue, Error> for RedisActor[src]

fn started(&mut self, ctx: &mut Self::Context)[src]

Method is called when stream get polled first time.

fn finished(&mut self, ctx: &mut Self::Context)[src]

Method is called when stream finishes. Read more

fn add_stream<S>(fut: S, ctx: &mut Self::Context) -> SpawnHandle where
    E: 'static,
    I: 'static,
    S: Stream<Item = I, Error = E> + 'static,
    Self::Context: AsyncContext<Self>, 
[src]

This method register stream to an actor context and allows to handle Stream in similar way as normal actor messages. Read more

impl WriteHandler<Error> for RedisActor[src]

fn finished(&mut self, ctx: &mut Self::Context)[src]

Called when the writer finishes. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,