Package akka.routing
Class AdjustPoolSize
- java.lang.Object
-
- akka.routing.AdjustPoolSize
-
- All Implemented Interfaces:
RouterManagementMesssage
,java.io.Serializable
,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
change
will add that number of routees to thePool
. Negativechange
will remove that number of routees from thePool
. Routees are stopped by sending aPoisonPill
to 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 AdjustPoolSize
apply(int change)
boolean
canEqual(java.lang.Object x$1)
int
change()
AdjustPoolSize
copy(int change)
int
copy$default$1()
boolean
equals(java.lang.Object x$1)
int
hashCode()
int
productArity()
java.lang.Object
productElement(int x$1)
java.lang.String
productElementName(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
java.lang.String
toString()
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:
productPrefix
in interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArity
in interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElement
in interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIterator
in interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqual
in interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementName
in interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equals
in interfacescala.Equals
- Overrides:
equals
in classjava.lang.Object
-
-