use of com.hazelcast.simulator.protocol.operation.LogOperation in project hazelcast-simulator by hazelcast.
the class TestContextImpl method echoCoordinator.
@Override
public void echoCoordinator(String msg, Object... args) {
String message = format(msg, args);
server.sendCoordinator(new LogOperation(message));
}
Aggregations