Package akka.remote

Class RemoteLogMarker$


  • public class RemoteLogMarker$
    extends java.lang.Object
    This is public with the purpose to document the used markers and properties of log events. No guarantee that it will remain binary compatible, but the marker names and properties are considered public API and will not be changed without notice.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static RemoteLogMarker$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      LogMarker connect​(Address remoteAddress, scala.Option<java.lang.Object> remoteAddressUid)
      Marker "akkaConnect" of log event when outbound connection is attempted.
      LogMarker disconnected​(Address remoteAddress, scala.Option<java.lang.Object> remoteAddressUid)
      Marker "akkaDisconnected" of log event when outbound connection is closed.
      LogMarker failureDetectorGrowing​(java.lang.String remoteAddress)
      Marker "akkaFailureDetectorGrowing" of log event when failure detector heartbeat interval is growing too large.
      LogMarker quarantine​(Address remoteAddress, scala.Option<java.lang.Object> remoteAddressUid)
      Marker "akkaQuarantine" of log event when a node is quarantined.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final RemoteLogMarker$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • RemoteLogMarker$

        public RemoteLogMarker$()
    • Method Detail

      • failureDetectorGrowing

        public LogMarker failureDetectorGrowing​(java.lang.String remoteAddress)
        Marker "akkaFailureDetectorGrowing" of log event when failure detector heartbeat interval is growing too large.

        Parameters:
        remoteAddress - The address of the node that the failure detector is monitoring. Included as property "akkaRemoteAddress".
      • quarantine

        public LogMarker quarantine​(Address remoteAddress,
                                    scala.Option<java.lang.Object> remoteAddressUid)
        Marker "akkaQuarantine" of log event when a node is quarantined.

        Parameters:
        remoteAddress - The address of the node that is quarantined. Included as property "akkaRemoteAddress".
        remoteAddressUid - The address of the node that is quarantined. Included as property "akkaRemoteAddressUid".
      • connect

        public LogMarker connect​(Address remoteAddress,
                                 scala.Option<java.lang.Object> remoteAddressUid)
        Marker "akkaConnect" of log event when outbound connection is attempted.

        Parameters:
        remoteAddress - The address of the connected node. Included as property "akkaRemoteAddress".
        remoteAddressUid - The address of the connected node. Included as property "akkaRemoteAddressUid".
      • disconnected

        public LogMarker disconnected​(Address remoteAddress,
                                      scala.Option<java.lang.Object> remoteAddressUid)
        Marker "akkaDisconnected" of log event when outbound connection is closed.

        Parameters:
        remoteAddress - The address of the disconnected node. Included as property "akkaRemoteAddress".
        remoteAddressUid - The address of the disconnected node. Included as property "akkaRemoteAddressUid".