use of com.hazelcast.client.impl.ClientLoggingService in project hazelcast by hazelcast.
the class ClientExecutionServiceImplTest method setUp.
@BeforeClass
public static void setUp() {
String name = "ClientExecutionServiceImplTest";
ThreadGroup threadGroup = new ThreadGroup(name);
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
HazelcastProperties properties = new HazelcastProperties(new Config());
ClientLoggingService loggingService = new ClientLoggingService(name, "jdk", BuildInfoProvider.BUILD_INFO, name);
executionService = new ClientExecutionServiceImpl(name, threadGroup, classLoader, properties, 1, loggingService);
}
Aggregations