startAndSend method

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

Implementation

void startAndSend(
  IStatus status,
  ITransaction transaction,
  int level,
  int msgType,
  int length,
  Pointer<Uint8> message,
) {
  _startAndSend(
    self,
    status.self,
    transaction.self,
    level,
    msgType,
    length,
    message,
  );
  status.checkStatus();
}