use of org.apache.ignite.internal.processors.pool.PoolProcessor in project ignite by apache.
the class MarshallerContextSelfTest method beforeTest.
/**
* {@inheritDoc}
*/
@Override
protected void beforeTest() throws Exception {
ctx = newContext();
execSvc = Executors.newSingleThreadExecutor();
ctx.add(new PoolProcessor(ctx) {
@Override
public ExecutorService getSystemExecutorService() {
return execSvc;
}
});
ctx.add(new GridClosureProcessor(ctx));
}
Aggregations