Struct nuts::ActivityId[][src]

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. Multiple handlers can be registered.

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. Multiple handlers can be registered.

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 on_delete<F>(&self, f: F) where
    F: FnOnce(A) + 'static, 
[src]

Registers a callback closure that is called when an activity is deleted. Only one handler can be registered because it takes ownership of the data. A second registration will overwrite the first handler.

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

Same as on_delete 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 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.

Make sure to use the correct signature for the function, the Rust compiler may give strange error messages otherwise. For example, the message must be borrowed by the subscription handler.

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.

Make sure to use the correct signature for the function, the Rust compiler may give strange error messages otherwise. For example, the message must be borrowed by the subscription handler.

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 private_channel<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. Messages sent with nuts::publish() are NOT received, only messages sent with nuts::send_to().

Attention! The handler takes ownership of the message. It will compile if it is borrowed instead, but then it will also expect a reference to be published. (Which usually doesn’t work due to lifetimes) Then, it will not react to normally sent messages and can be difficult to debug.

Since the listener takes ownership, it is not possible to have more than one private channel active for the same activity at the same time. If multiple private channels are added to an activity, only the last listener is retained. (Older ones are replaced and deleted)

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

Variant of private_channel with access to the domain state.

Panics

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

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

Variant of ``private_channel` with subscription mask.

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

Variant of private_channel with access to the domain state and subscription mask.

Panics

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

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

Panics

If status is set to something other than Deleted after it has been Deleted

pub fn private_message<MSG: Any>(&self, msg: MSG)[src]

Publish a message to a specific activity.

If you lack access to an ActivityId, use nuts::send_to() or UncheckedActivityId::private_message. Both are equivalent.

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.