buildCommand method
Build the @ command to be sent to remote secondary for execution.
Implementation
@override
String buildCommand() {
StringBuffer serverCommandBuffer = StringBuffer('lookup:');
if (bypassCache == true) {
serverCommandBuffer.write('bypassCache:$bypassCache:');
}
if (operation != null) {
serverCommandBuffer.write('$operation:');
}
serverCommandBuffer.write('${atKey.toString()}\n');
return serverCommandBuffer.toString();
}