receivedClearText method

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

Process received clear text within the Strobe protocol.

Parameters:

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

Implementation

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