/hazelcast-client/src/main/java/com/hazelcast/client/impl/MessageListenerManager.java
https://bitbucket.org/gabral6_gmailcom/hazelcast · Java · 85 lines · 60 code · 10 blank · 15 comment · 9 complexity · fb985800a154c35a29b996288bf0d366 MD5 · raw file
- /*
- * Copyright (c) 2008-2013, Hazelcast, Inc. All Rights Reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package com.hazelcast.client.impl;
- import com.hazelcast.client.Call;
- import com.hazelcast.client.HazelcastClient;
- import com.hazelcast.client.Packet;
- import com.hazelcast.client.ProxyHelper;
- import com.hazelcast.core.MessageListener;
- import com.hazelcast.impl.ClusterOperation;
- import com.hazelcast.impl.DataMessage;
- import com.hazelcast.nio.Data;
- import java.util.ArrayList;
- import java.util.Collection;
- import java.util.List;
- import java.util.concurrent.ConcurrentHashMap;
- import java.util.concurrent.CopyOnWriteArrayList;
- public class MessageListenerManager {
- final private ConcurrentHashMap<String, List<MessageListener>> messageListeners = new ConcurrentHashMap<String, List<MessageListener>>();
- public void registerListener(String name, MessageListener messageListener) {
- List<MessageListener> newListenersList = new CopyOnWriteArrayList<MessageListener>();
- List<MessageListener> listeners = messageListeners.putIfAbsent(name, newListenersList);
- if (listeners == null) {
- listeners = newListenersList;
- }
- listeners.add(messageListener);
- }
- public void removeListener(String name, MessageListener messageListener) {
- if (!messageListeners.containsKey(name)) {
- return;
- }
- messageListeners.get(name).remove(messageListener);
- if (messageListeners.get(name).isEmpty()) {
- messageListeners.remove(name);
- }
- }
- public boolean noListenerRegistered(String name) {
- if (!messageListeners.containsKey(name)) {
- return true;
- }
- return messageListeners.get(name).isEmpty();
- }
- public void notifyMessageListeners(Packet packet) {
- List<MessageListener> list = messageListeners.get(packet.getName());
- if (list != null) {
- for (MessageListener<Object> messageListener : list) {
- messageListener.onMessage(new DataMessage(packet.getName(), new Data(packet.getKey())));
- }
- }
- }
- public Call createNewAddListenerCall(final ProxyHelper proxyHelper) {
- Packet request = proxyHelper.createRequestPacket(ClusterOperation.ADD_LISTENER, null, null);
- return proxyHelper.createCall(request);
- }
- public Collection<Call> calls(final HazelcastClient client) {
- final List<Call> calls = new ArrayList<Call>();
- for (final String name : messageListeners.keySet()) {
- final ProxyHelper proxyHelper = new ProxyHelper(name, client);
- calls.add(createNewAddListenerCall(proxyHelper));
- }
- return calls;
- }
- }