put abstract method

void put(
  1. T? message
)

Used to put new message in the buffer. Note the Buffer can choose to not store the message (e.g. a dropping buffer can drop any new message exceeding a given limit).

Implementation

void put(T? message);