send method

void send(
  1. IStatus status,
  2. int level,
  3. int msgType,
  4. int length,
  5. Pointer<Uint8> message,
)

Implementation

void send(IStatus status, int level, int msgType, int length,
    Pointer<Uint8> message) {
  _send(self, status.self, level, msgType, length, message);
  status.checkStatus();
}