HubEvent<T> constructor

HubEvent<T>(
  1. T data,
  2. void ack(),
  3. void reject(
    1. bool requeue
    )
)

Implementation

HubEvent(
  this.data,
  this.ack,
  this.reject,
);