Package com.hazelcast.client.executor.tasks

Examples of com.hazelcast.client.executor.tasks.SelectNoMembers


    @Test(expected = RejectedExecutionException.class)
    public void testExecute_withNoMemberSelected() {
        IExecutorService service = client.getExecutorService(randomString());
        String mapName = randomString();
        MemberSelector selector = new SelectNoMembers();

        service.execute(new MapPutRunnable(mapName), selector);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.client.executor.tasks.SelectNoMembers

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.