Package org.apache.pekko.routing
Class AdjustPoolSize
- java.lang.Object
-
- org.apache.pekko.routing.AdjustPoolSize
-
- All Implemented Interfaces:
java.io.Serializable,RouterManagementMesssage,scala.Equals,scala.Product
public final class AdjustPoolSize extends java.lang.Object implements RouterManagementMesssage, scala.Product, java.io.Serializable
Increase or decrease the number of routees in aPool. It may be handled after other messages.Positive
changewill add that number of routees to thePool. Negativechangewill remove that number of routees from thePool. Routees are stopped by sending apekko.actor.PoisonPillto the routee. Precautions are taken reduce the risk of dropping messages that are concurrently being routed to the removed routee, but it is not guaranteed that messages are not lost.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AdjustPoolSize(int change)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdjustPoolSizeapply(int change)booleancanEqual(java.lang.Object x$1)intchange()AdjustPoolSizecopy(int change)intcopy$default$1()booleanequals(java.lang.Object x$1)inthashCode()intproductArity()java.lang.ObjectproductElement(int x$1)java.lang.StringproductElementName(int x$1)scala.collection.Iterator<java.lang.Object>productIterator()java.lang.StringproductPrefix()java.lang.StringtoString()static scala.Option<java.lang.Object>unapply(AdjustPoolSize x$0)
-
-
-
Method Detail
-
apply
public static AdjustPoolSize apply(int change)
-
unapply
public static scala.Option<java.lang.Object> unapply(AdjustPoolSize x$0)
-
change
public int change()
-
copy
public AdjustPoolSize copy(int change)
-
copy$default$1
public int copy$default$1()
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefixin interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArityin interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElementin interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIteratorin interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqualin interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementNamein interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equalsin interfacescala.Equals- Overrides:
equalsin classjava.lang.Object
-
-