Helper functions#
See also
Functions#
- IEvent * carb::events::IEventStream1_5::createEventPtr(EventType eventType, SenderId sender, ValuesT &&… values)
Create new event of certain type.
- void carb::events::IEventStream1_5::dispatch(EventType eventType, SenderId sender, ValuesT &&… values)
Helper function that combines createEvent() with dispatch() .
- void carb::events::IEventStream1_5::dispatch(EventType eventType, SenderId sender)
Helper function that combines createEvent() with dispatch() .
- void carb::events::IEventStream1_5::push(EventType eventType, ValuesT &&… values)
Helper function that combines createEvent() with push() .
- void carb::events::IEventStream1_5::pushBlocked(EventType eventType, ValuesT &&… values)
Helper function that combines createEvent() with pushBlocked() .
- void carb::events::IEventStream1_5::pushBlockedWithSender(EventType eventType, SenderId sender, ValuesT &&… values)
Helper function that combines createEvent() with pushBlocked() .
- void carb::events::IEventStream1_5::pushBlockedWithSender(EventType eventType, SenderId sender)
Helper function that combines createEvent() with pushBlocked() .
- void carb::events::IEventStream1_5::pushWithSender(EventType eventType, SenderId sender, ValuesT &&… values)
Helper function that combines createEvent() with push() .
- void carb::events::IEventStream1_5::pushWithSender(EventType eventType, SenderId sender)
Helper function that combines createEvent() with push() .