[][src]Struct nuts::ActivityId

pub struct ActivityId<A> { /* fields omitted */ }

Handle to an Activity that has been registered, with a type parameter to track the activity's type. Can be used to add type-checked closures to the activity, which will be used as event listeners.

Implements Copy and Clone

Implementations

impl<A: Activity> ActivityId<A>[src]

pub fn on_enter<F>(&self, f: F) where
    F: Fn(&mut A) + 'static, 
[src]

Registers a callback closure that is called when an activity changes from inactive to active.

pub fn on_enter_domained<F>(&self, f: F) where
    F: Fn(&mut A, &mut DomainState) + 'static, 
[src]

Same as on_enter but with domain access in closure

pub fn on_leave<F>(&self, f: F) where
    F: Fn(&mut A) + 'static, 
[src]

Registers a callback closure that is called when an activity changes from active to inactive.

pub fn on_leave_domained<F>(&self, f: F) where
    F: Fn(&mut A, &mut DomainState) + 'static, 
[src]

Same as on_leave but with domain access in closure

pub fn subscribe<F, MSG>(&self, f: F) where
    F: Fn(&mut A, &MSG) + 'static,
    MSG: Any
[src]

Registers a callback closure on an activity with a specific topic to listen to.

By default, the activity will only receive calls when it is active. Use subscribe_masked for more control over this behavior.

Example

struct MyActivity { id: usize };
struct MyMessage { text: String };

pub fn main() {
    let activity = nuts::new_activity(MyActivity { id: 0 } );
    activity.subscribe(
        |activity: &mut MyActivity, message: &MyMessage|
        println!("Subscriber with ID {} received text: {}", activity.id, message.text)
    );
}

In the example above, a subscription is created that waits for messages of type MyMessage to be published. So far, the code inside the closure is not executed and nothing is printed to the console.

Note that the first argument of the closure is a mutable reference to the activity object. The second argument is a read-only reference to the published message. Both types must match exactly or otherwise the closure will either not be accepted by the compiler.

A function with the correct argument types can also be used to subscribe.

struct MyActivity { id: usize };
struct MyMessage { text: String };

pub fn main() {
    let activity = nuts::new_activity(MyActivity { id: 0 } );
    activity.subscribe(MyActivity::print_text);
}

impl MyActivity {
    fn print_text(&mut self, message: &MyMessage) {
        println!("Subscriber with ID {} received text: {}", self.id, message.text)
    }
}

pub fn subscribe_mut<F, MSG>(&self, f: F) where
    F: Fn(&mut A, &mut MSG) + 'static,
    MSG: Any
[src]

Same as subscribe but gives mutable access to the message object.

pub fn subscribe_owned<F, MSG>(&self, f: F) where
    F: Fn(&mut A, MSG) + 'static,
    MSG: Any
[src]

Registers a callback closure on an activity with a specific topic to listen to. This variant takes ownership of the message. Only subscription per type is allowed. Othwerise, a pnic will occur when publishing.

pub fn subscribe_domained<F, MSG>(&self, f: F) where
    F: Fn(&mut A, &mut DomainState, &MSG) + 'static,
    MSG: Any
[src]

Registers a callback closure on an activity with a specific topic to listen to. Has mutable access to the DomainState object.

By default, the activity will only receive calls when it is active. Use subscribe_domained_masked for more control over this behavior.

Panics

Panics if the activity has not been registered with a domain.

pub fn subscribe_domained_mut<F, MSG>(&self, f: F) where
    F: Fn(&mut A, &mut DomainState, &mut MSG) + 'static,
    MSG: Any
[src]

Same as subscribe_domained but gives mutable access to the message object.

pub fn subscribe_domained_owned<F, MSG>(&self, f: F) where
    F: Fn(&mut A, &mut DomainState, MSG) + 'static,
    MSG: Any
[src]

Registers a callback closure on an activity with a specific topic to listen to and access to the domain. This variant takes ownership of the message. Only subscription per type is allowed. Otherwise, a panic will occur when publishing.

pub fn subscribe_masked<F, MSG>(&self, mask: SubscriptionFilter, f: F) where
    F: Fn(&mut A, &MSG) + 'static,
    MSG: Any
[src]

Registers a callback closure on an activity with a specific topic to listen to with filtering options.

pub fn subscribe_masked_mut<F, MSG>(&self, mask: SubscriptionFilter, f: F) where
    F: Fn(&mut A, &mut MSG) + 'static,
    MSG: Any
[src]

Same as subscribe_masked but gives mutable access to the message object.

pub fn subscribe_domained_masked<F, MSG>(&self, mask: SubscriptionFilter, f: F) where
    F: Fn(&mut A, &mut DomainState, &MSG) + 'static,
    MSG: Any
[src]

Registers a callback closure on an activity with a specific topic to listen to with filtering options. Has mutable access to the DomainState object.

Panics

Panics if the activity has not been registered with a domain.

pub fn subscribe_domained_masked_mut<F, MSG>(
    &self,
    mask: SubscriptionFilter,
    f: F
) where
    F: Fn(&mut A, &mut DomainState, &mut MSG) + 'static,
    MSG: Any
[src]

Same as subscribe_domained_masked but gives mutable access to the message object.

pub fn set_status(&self, status: LifecycleStatus)[src]

Changes the lifecycle status of the activity

Trait Implementations

impl<A> Clone for ActivityId<A>[src]

impl<A> Copy for ActivityId<A>[src]

impl<A: Debug> Debug for ActivityId<A>[src]

impl<A: Eq> Eq for ActivityId<A>[src]

impl<A: Hash> Hash for ActivityId<A>[src]

impl<A> Into<UncheckedActivityId> for ActivityId<A>[src]

impl<A: Ord> Ord for ActivityId<A>[src]

impl<A: PartialEq> PartialEq<ActivityId<A>> for ActivityId<A>[src]

impl<A: PartialOrd> PartialOrd<ActivityId<A>> for ActivityId<A>[src]

impl<A> StructuralEq for ActivityId<A>[src]

impl<A> StructuralPartialEq for ActivityId<A>[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for ActivityId<A> where
    A: RefUnwindSafe

impl<A> Send for ActivityId<A> where
    A: Send

impl<A> Sync for ActivityId<A> where
    A: Sync

impl<A> Unpin for ActivityId<A> where
    A: Unpin

impl<A> UnwindSafe for ActivityId<A> where
    A: UnwindSafe

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.