Package akka.cluster.sharding.internal
Class EmptyClusterShardingInstrumentation
- java.lang.Object
-
- akka.cluster.sharding.internal.EmptyClusterShardingInstrumentation
-
- All Implemented Interfaces:
ClusterShardingInstrumentation
- Direct Known Subclasses:
EmptyClusterShardingInstrumentation$
public class EmptyClusterShardingInstrumentation extends java.lang.Object implements ClusterShardingInstrumentation
INTERNAL API
-
-
Constructor Summary
Constructors Constructor Description EmptyClusterShardingInstrumentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description scala.collection.immutable.Seq<java.lang.String>dependencies()Optional dependencies for this instrumentation.voidmessageDropped(java.lang.String typeName)voidreceivedShardHome(java.lang.String typeName, java.lang.String shardId)voidregionRequestedShardHome(java.lang.String typeName, java.lang.String shardId)voidshardHandoffFinished(java.lang.String typeName, java.lang.String shard, boolean ok)voidshardHandoffStarted(java.lang.String typeName, java.lang.String shard)voidshardRegionBufferSize(java.lang.String typeName, int size)voidshardRegionBufferSizeIncremented(java.lang.String typeName)
-
-
-
Method Detail
-
shardRegionBufferSize
public void shardRegionBufferSize(java.lang.String typeName, int size)- Specified by:
shardRegionBufferSizein interfaceClusterShardingInstrumentation
-
shardRegionBufferSizeIncremented
public void shardRegionBufferSizeIncremented(java.lang.String typeName)
- Specified by:
shardRegionBufferSizeIncrementedin interfaceClusterShardingInstrumentation
-
regionRequestedShardHome
public void regionRequestedShardHome(java.lang.String typeName, java.lang.String shardId)- Specified by:
regionRequestedShardHomein interfaceClusterShardingInstrumentation
-
receivedShardHome
public void receivedShardHome(java.lang.String typeName, java.lang.String shardId)- Specified by:
receivedShardHomein interfaceClusterShardingInstrumentation
-
messageDropped
public void messageDropped(java.lang.String typeName)
- Specified by:
messageDroppedin interfaceClusterShardingInstrumentation
-
shardHandoffStarted
public void shardHandoffStarted(java.lang.String typeName, java.lang.String shard)- Specified by:
shardHandoffStartedin interfaceClusterShardingInstrumentation
-
shardHandoffFinished
public void shardHandoffFinished(java.lang.String typeName, java.lang.String shard, boolean ok)- Specified by:
shardHandoffFinishedin interfaceClusterShardingInstrumentation
-
dependencies
public scala.collection.immutable.Seq<java.lang.String> dependencies()
Description copied from interface:ClusterShardingInstrumentationOptional dependencies for this instrumentation.Dependency instrumentations will always be ordered before this instrumentation.
- Specified by:
dependenciesin interfaceClusterShardingInstrumentation- Returns:
- list of class names for optional instrumentation dependencies
-
-