Package akka.cluster.sharding
Class ShardingLogMarker$
- java.lang.Object
-
- akka.cluster.sharding.ShardingLogMarker$
-
public class ShardingLogMarker$ 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 ShardingLogMarker$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description ShardingLogMarker$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LogMarker
shardAllocated(java.lang.String shardTypeName, java.lang.String shardId, Address node)
Marker "akkaShardAllocated" of log event whenShardCoordinator
allocates a shard to a region.LogMarker
shardStarted(java.lang.String shardTypeName, java.lang.String shardId)
Marker "akkaShardStarted" of log event whenShardRegion
starts a shard.
-
-
-
Field Detail
-
MODULE$
public static final ShardingLogMarker$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
shardAllocated
public LogMarker shardAllocated(java.lang.String shardTypeName, java.lang.String shardId, Address node)
Marker "akkaShardAllocated" of log event whenShardCoordinator
allocates a shard to a region.- Parameters:
shardTypeName
- ThetypeName
of the shard. Included as property "akkaShardTypeName".shardId
- The id of the shard. Included as property "akkaShardId".node
- The address of the node where the shard is allocated. Included as property "akkaRemoteAddress".
-
shardStarted
public LogMarker shardStarted(java.lang.String shardTypeName, java.lang.String shardId)
Marker "akkaShardStarted" of log event whenShardRegion
starts a shard.- Parameters:
shardTypeName
- ThetypeName
of the shard. Included as property "akkaShardTypeName".shardId
- The id of the shard. Included as property "akkaShardId".
-
-