/driver-core/src/main/com/mongodb/event/ConnectionEventMulticaster.java

http://github.com/mongodb/mongo-java-driver · Java · 78 lines · 39 code · 11 blank · 28 comment · 4 complexity · 63ec0cfedb7e1200088adcbc3d3323c1 MD5 · raw file

  1. /*
  2. * Copyright (c) 2008-2014 MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.event;
  17. import com.mongodb.annotations.Beta;
  18. import java.util.Set;
  19. import java.util.concurrent.ConcurrentHashMap;
  20. import static java.util.Collections.newSetFromMap;
  21. /**
  22. * A multicaster for connection events.
  23. */
  24. @Beta
  25. public final class ConnectionEventMulticaster implements ConnectionListener {
  26. private final Set<ConnectionListener> connectionListeners = newSetFromMap(new ConcurrentHashMap<ConnectionListener, Boolean>());
  27. /**
  28. * Adds the given connection listener to the list of listeners to invoke on connection events.
  29. *
  30. * @param connectionListener the connection listener
  31. */
  32. public void add(final ConnectionListener connectionListener) {
  33. connectionListeners.add(connectionListener);
  34. }
  35. /**
  36. * Removes the given connection listener from the list of listeners to invoke on connection events.
  37. *
  38. * @param connectionListener the connection listener
  39. */
  40. public void remove(final ConnectionListener connectionListener) {
  41. connectionListeners.remove(connectionListener);
  42. }
  43. @Override
  44. public void connectionOpened(final ConnectionOpenedEvent event) {
  45. for (final ConnectionListener cur : connectionListeners) {
  46. cur.connectionOpened(event);
  47. }
  48. }
  49. @Override
  50. public void connectionClosed(final ConnectionClosedEvent event) {
  51. for (final ConnectionListener cur : connectionListeners) {
  52. cur.connectionClosed(event);
  53. }
  54. }
  55. @Override
  56. public void messagesSent(final ConnectionMessagesSentEvent event) {
  57. for (final ConnectionListener cur : connectionListeners) {
  58. cur.messagesSent(event);
  59. }
  60. }
  61. @Override
  62. public void messageReceived(final ConnectionMessageReceivedEvent event) {
  63. for (final ConnectionListener cur : connectionListeners) {
  64. cur.messageReceived(event);
  65. }
  66. }
  67. }