Class DynamicCacheChangeBatch
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.DynamicCacheChangeBatch
-
- All Implemented Interfaces:
Serializable,DiscoveryCustomMessage
public class DynamicCacheChangeBatch extends Object implements DiscoveryCustomMessage
Cache change batch.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DynamicCacheChangeBatch(Collection<DynamicCacheChangeRequest> reqs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable DiscoveryCustomMessageackMessage()Called when custom message has been handled by all nodes.DiscoCachecreateDiscoCache(GridDiscoveryManager mgr, AffinityTopologyVersion topVer, DiscoCache discoCache)Creates new discovery cache if message caused topology version change.ExchangeActionsexchangeActions()booleanexchangeNeeded()IgniteUuidid()booleanisMutable()Collection<DynamicCacheChangeRequest>requests()Set<String>restartingCaches()DynamicCacheChangeBatchrestartingCaches(Set<String> restartingCaches)@Nullable ServiceDeploymentActionsservicesDeploymentActions()voidservicesDeploymentActions(ServiceDeploymentActions serviceDeploymentActions)booleanstartCaches()voidstartCaches(boolean startCaches)StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.ignite.internal.managers.discovery.DiscoveryCustomMessage
stopProcess
-
-
-
-
Constructor Detail
-
DynamicCacheChangeBatch
public DynamicCacheChangeBatch(Collection<DynamicCacheChangeRequest> reqs)
- Parameters:
reqs- Requests.
-
-
Method Detail
-
id
public IgniteUuid id()
- Specified by:
idin interfaceDiscoveryCustomMessage- Returns:
- Unique custom message ID.
-
ackMessage
@Nullable public @Nullable DiscoveryCustomMessage ackMessage()
Called when custom message has been handled by all nodes.- Specified by:
ackMessagein interfaceDiscoveryCustomMessage- Returns:
- Ack message or
nullif ack is not required.
-
isMutable
public boolean isMutable()
- Specified by:
isMutablein interfaceDiscoveryCustomMessage- Returns:
Trueif message can be modified during listener notification. Changes will be sent to next nodes.
-
createDiscoCache
public DiscoCache createDiscoCache(GridDiscoveryManager mgr, AffinityTopologyVersion topVer, DiscoCache discoCache)
Creates new discovery cache if message caused topology version change.- Specified by:
createDiscoCachein interfaceDiscoveryCustomMessage- Parameters:
mgr- Discovery manager.topVer- New topology version.discoCache- Current discovery cache.- Returns:
- Reused discovery cache.
-
requests
public Collection<DynamicCacheChangeRequest> requests()
- Returns:
- Collection of change requests.
-
exchangeNeeded
public boolean exchangeNeeded()
- Returns:
Trueif request should trigger partition exchange.
-
exchangeActions
public ExchangeActions exchangeActions()
- Returns:
- Cache updates to be executed on exchange.
-
servicesDeploymentActions
@Nullable public @Nullable ServiceDeploymentActions servicesDeploymentActions()
- Returns:
- Services deployment actions to be processed on services deployment process.
-
servicesDeploymentActions
public void servicesDeploymentActions(ServiceDeploymentActions serviceDeploymentActions)
- Parameters:
serviceDeploymentActions- Services deployment actions to be processed on services deployment process.
-
startCaches
public boolean startCaches()
- Returns:
Trueif required to start all caches on client node.
-
restartingCaches
public DynamicCacheChangeBatch restartingCaches(Set<String> restartingCaches)
- Parameters:
restartingCaches- Restarting caches.
-
startCaches
public void startCaches(boolean startCaches)
- Parameters:
startCaches-Trueif required to start all caches on client node.
-
-