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