Package com.linkedin.databus.core.monitoring.events

Examples of com.linkedin.databus.core.monitoring.events.DbusEventsTotalStatsEvent


  }

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


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

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

TOP

Related Classes of com.linkedin.databus.core.monitoring.events.DbusEventsTotalStatsEvent

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.