sendClearText method

void sendClearText(
  1. bool meta,
  2. List<int> cleartext
)

Process and send clear text data within the Strobe protocol.

Parameters:

  • meta: A boolean flag indicating whether metadata is included in the operation.
  • cleartext: A List<int> containing the clear text data to be processed and sent.

Implementation

void sendClearText(bool meta, List<int> cleartext) {
  operate(meta, StrobeOperation.sendClr, cleartext, 0, false);
}