buildCommand method

  1. @override
String buildCommand()
override

Build the @ command to be sent to remote secondary for execution.

Implementation

@override
String buildCommand() {
  StringBuffer serverCommandBuffer = StringBuffer('llookup:');
  if (operation != null) {
    serverCommandBuffer.write('$operation:');
  }
  serverCommandBuffer.write('${buildKey()}\n');
  return serverCommandBuffer.toString();
}