Gemfire JavaDocs
Package org.apache.geode.cache.util
Interface GatewayEvent
-
@Deprecated public interface GatewayEvent
Deprecated.as of GemFire 8.0. UseGatewayQueueEvent
insteadInterfaceGatewayEvent
representsCache
events delivered toGateway
s.- Since:
- GemFire 5.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.Object
getCallbackArgument()
Deprecated.Returns the callbackArgument associated with this event.long
getCreationTime()
Deprecated.Returns the creation timestamp in milliseconds.java.lang.Object
getDeserializedValue()
Deprecated.Returns the deserialized value associated with this event.java.lang.Object
getKey()
Deprecated.Returns the key associated with this event.Operation
getOperation()
Deprecated.Returns theOperation
that triggered this event.boolean
getPossibleDuplicate()
Deprecated.Returns whether this event is a possible duplicate.Region<?,?>
getRegion()
Deprecated.Returns theRegion
associated with thisGatewayEvent
.byte[]
getSerializedValue()
Deprecated.Returns the serialized form of the value associated with this event.void
setPossibleDuplicate(boolean possibleDuplicate)
Deprecated.Sets whether this event is a possible duplicate.
-
-
-
Method Detail
-
getRegion
Region<?,?> getRegion()
Deprecated.Returns theRegion
associated with thisGatewayEvent
.- Returns:
- the
Region
associated with thisGatewayEvent
-
getOperation
Operation getOperation()
Deprecated.Returns theOperation
that triggered this event.- Returns:
- the
Operation
that triggered this event
-
getCallbackArgument
java.lang.Object getCallbackArgument()
Deprecated.Returns the callbackArgument associated with this event.- Returns:
- the callbackArgument associated with this event
-
getKey
java.lang.Object getKey()
Deprecated.Returns the key associated with this event.- Returns:
- the key associated with this event
-
getDeserializedValue
java.lang.Object getDeserializedValue()
Deprecated.Returns the deserialized value associated with this event.- Returns:
- the deserialized value associated with this event
-
getSerializedValue
byte[] getSerializedValue()
Deprecated.Returns the serialized form of the value associated with this event.- Returns:
- the serialized form of the value associated with this event
-
setPossibleDuplicate
void setPossibleDuplicate(boolean possibleDuplicate)
Deprecated.Sets whether this event is a possible duplicate.- Parameters:
possibleDuplicate
- whether this event is a possible duplicate
-
getPossibleDuplicate
boolean getPossibleDuplicate()
Deprecated.Returns whether this event is a possible duplicate.- Returns:
- whether this event is a possible duplicate
-
getCreationTime
long getCreationTime()
Deprecated.Returns the creation timestamp in milliseconds.- Returns:
- the creation timestamp in milliseconds
- Since:
- GemFire 6.0
-
-