Package com.linkedin.databus.monitoring.events

Examples of com.linkedin.databus.monitoring.events.DbusDbSourceConnectionStatsEvent


    if (! (eventData instanceof DbusDbSourceConnectionStatsEvent))
    {
      LOG.warn("Attempt to merge unknown event class" + eventData.getClass().getName());
      return;
    }
    DbusDbSourceConnectionStatsEvent e = (DbusDbSourceConnectionStatsEvent)eventData;

    /** Allow use negative relay IDs for aggregation across multiple relays */
    if (_event.relayId > 0 && e.relayId != _event.relayId)
    {
      LOG.warn("Attempt to data for a different relay " + e.relayId);
View Full Code Here


  }

  @Override
  protected DbusDbSourceConnectionStatsEvent newDataEvent()
  {
    return new DbusDbSourceConnectionStatsEvent();
  }
View Full Code Here

TOP

Related Classes of com.linkedin.databus.monitoring.events.DbusDbSourceConnectionStatsEvent

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.