Search in sources :

Example 1 with ClientEventRegistration

use of com.hazelcast.client.spi.impl.listener.ClientEventRegistration in project hazelcast by hazelcast.

the class ListenerLeakTestSmartRouting method testTopicMessageListener.

@Test
public void testTopicMessageListener() {
    Collection<Node> nodes = createNodes();
    HazelcastInstance client = hazelcastFactory.newHazelcastClient();
    ITopic<Object> topic = client.getTopic(randomString());
    String id = topic.addMessageListener(mock(MessageListener.class));
    Collection<ClientEventRegistration> registrations = getClientEventRegistrations(client, id);
    assertTrue(topic.removeMessageListener(id));
    assertNoLeftOver(nodes, client, id, registrations);
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) ClientEventRegistration(com.hazelcast.client.spi.impl.listener.ClientEventRegistration) Node(com.hazelcast.instance.Node) MessageListener(com.hazelcast.core.MessageListener) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Example 2 with ClientEventRegistration

use of com.hazelcast.client.spi.impl.listener.ClientEventRegistration in project hazelcast by hazelcast.

the class ListenerLeakTestSmartRouting method testDistributedObjectListeners.

@Test
public void testDistributedObjectListeners() {
    Collection<Node> nodes = createNodes();
    HazelcastInstance client = hazelcastFactory.newHazelcastClient();
    String id = client.addDistributedObjectListener(mock(DistributedObjectListener.class));
    Collection<ClientEventRegistration> registrations = getClientEventRegistrations(client, id);
    assertTrue(client.removeDistributedObjectListener(id));
    assertNoLeftOver(nodes, client, id, registrations);
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) ClientEventRegistration(com.hazelcast.client.spi.impl.listener.ClientEventRegistration) Node(com.hazelcast.instance.Node) DistributedObjectListener(com.hazelcast.core.DistributedObjectListener) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Example 3 with ClientEventRegistration

use of com.hazelcast.client.spi.impl.listener.ClientEventRegistration in project hazelcast by hazelcast.

the class ListenerLeakTestSmartRouting method testMapPartitionLostListeners.

@Test
public void testMapPartitionLostListeners() {
    Collection<Node> nodes = createNodes();
    HazelcastInstance client = hazelcastFactory.newHazelcastClient();
    IMap map = client.getMap(randomString());
    String id = map.addPartitionLostListener(mock(MapPartitionLostListener.class));
    Collection<ClientEventRegistration> registrations = getClientEventRegistrations(client, id);
    assertTrue(map.removePartitionLostListener(id));
    assertNoLeftOver(nodes, client, id, registrations);
}
Also used : IMap(com.hazelcast.core.IMap) HazelcastInstance(com.hazelcast.core.HazelcastInstance) MapPartitionLostListener(com.hazelcast.map.listener.MapPartitionLostListener) ClientEventRegistration(com.hazelcast.client.spi.impl.listener.ClientEventRegistration) Node(com.hazelcast.instance.Node) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Example 4 with ClientEventRegistration

use of com.hazelcast.client.spi.impl.listener.ClientEventRegistration in project hazelcast by hazelcast.

the class ListenerLeakTestSmartRouting method testListListeners.

@Test
public void testListListeners() {
    Collection<Node> nodes = createNodes();
    HazelcastInstance client = hazelcastFactory.newHazelcastClient();
    IList<Object> list = client.getList(randomString());
    String id = list.addItemListener(mock(ItemListener.class), false);
    Collection<ClientEventRegistration> registrations = getClientEventRegistrations(client, id);
    assertTrue(list.removeItemListener(id));
    assertNoLeftOver(nodes, client, id, registrations);
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) ClientEventRegistration(com.hazelcast.client.spi.impl.listener.ClientEventRegistration) Node(com.hazelcast.instance.Node) ItemListener(com.hazelcast.core.ItemListener) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Example 5 with ClientEventRegistration

use of com.hazelcast.client.spi.impl.listener.ClientEventRegistration in project hazelcast by hazelcast.

the class ListenerLeakTestSmartRouting method testQueueListeners.

@Test
public void testQueueListeners() {
    Collection<Node> nodes = createNodes();
    HazelcastInstance client = hazelcastFactory.newHazelcastClient();
    IQueue<Object> queue = client.getQueue(randomString());
    String id = queue.addItemListener(mock(ItemListener.class), false);
    Collection<ClientEventRegistration> registrations = getClientEventRegistrations(client, id);
    assertTrue(queue.removeItemListener(id));
    assertNoLeftOver(nodes, client, id, registrations);
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) ClientEventRegistration(com.hazelcast.client.spi.impl.listener.ClientEventRegistration) Node(com.hazelcast.instance.Node) ItemListener(com.hazelcast.core.ItemListener) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test) ParallelTest(com.hazelcast.test.annotation.ParallelTest)

Aggregations

ClientEventRegistration (com.hazelcast.client.spi.impl.listener.ClientEventRegistration)19 HazelcastInstance (com.hazelcast.core.HazelcastInstance)18 Node (com.hazelcast.instance.Node)18 ParallelTest (com.hazelcast.test.annotation.ParallelTest)18 QuickTest (com.hazelcast.test.annotation.QuickTest)18 Test (org.junit.Test)18 ItemListener (com.hazelcast.core.ItemListener)6 EntryListener (com.hazelcast.core.EntryListener)4 IMap (com.hazelcast.core.IMap)4 DistributedObjectListener (com.hazelcast.core.DistributedObjectListener)2 MessageListener (com.hazelcast.core.MessageListener)2 MultiMap (com.hazelcast.core.MultiMap)2 MapListener (com.hazelcast.map.listener.MapListener)2 MapPartitionLostListener (com.hazelcast.map.listener.MapPartitionLostListener)2 Member (com.hazelcast.core.Member)1 Connection (com.hazelcast.nio.Connection)1 AssertTask (com.hazelcast.test.AssertTask)1 Collection (java.util.Collection)1