public class DrCacheFstEvent extends EventAdapter
Grid events are used for notification about what happens within the grid. Note that by design Ignite keeps all events generated on the local node locally and it provides APIs for performing a distributed queries across multiple nodes:
IgniteEvents.remoteQuery(org.apache.ignite.lang.IgnitePredicate, long, int...)
-
asynchronously querying events occurred on the nodes specified, including remote nodes.
IgniteEvents.localQuery(org.apache.ignite.lang.IgnitePredicate, int...)
-
querying only local events stored on this local node.
IgniteEvents.localListen(org.apache.ignite.lang.IgnitePredicate, int...)
-
listening to local grid events (events from remote nodes not included).
IgniteEvents.waitForLocal(org.apache.ignite.lang.IgnitePredicate, int...)
.
IgniteConfiguration.getIncludeEventTypes()
method in Ignite configuration. Note that certain
events are required for Ignite's internal operations and such events will still be generated but not stored by
event storage if they are disabled in Ignite configuration.Constructor and Description |
---|
DrCacheFstEvent()
No-arg constructor.
|
DrCacheFstEvent(ClusterNode node,
String msg,
int type,
String name,
Collection<Byte> dcIds)
Creates cache full state transfer event with given parameters.
|
DrCacheFstEvent(ClusterNode node,
String msg,
int type,
String name,
Collection<Byte> dcIds,
long entriesCnt)
Creates cache full state transfer event with given parameters.
|
Modifier and Type | Method and Description |
---|---|
String |
cacheName()
Returns name of the cache that should be transferred to the remote sites.
|
Collection<Byte> |
dcIds()
Returns ids of data centers that should store the replica of the cache.
|
long |
getEntriesCnt()
Returns total number of entries which were successfully transferred via FST or
-1 if inapplicable. |
String |
toString() |
compareTo, equals, hashCode, id, localOrder, message, message, name, node, node, shortDisplay, timestamp, type, type
public DrCacheFstEvent()
public DrCacheFstEvent(ClusterNode node, String msg, int type, String name, Collection<Byte> dcIds)
node
- Source node of the event.msg
- Optional message.type
- Event type.name
- Cache name.dcIds
- Ids of data centers.public DrCacheFstEvent(ClusterNode node, String msg, int type, String name, Collection<Byte> dcIds, long entriesCnt)
node
- Source node of the event.msg
- Optional message.type
- Event type.name
- Cache name.dcIds
- Ids of data centers.entriesCnt
- Total number of entries which were successfully transferred via FST.public String cacheName()
public Collection<Byte> dcIds()
public long getEntriesCnt()
-1
if inapplicable.public String toString()
toString
in class EventAdapter
GridGain In-Memory Computing Platform : ver. 8.9.23 Release Date : July 30 2025