Gemfire JavaDocs_test
Interface AsyncEventQueueFactory
-
public interface AsyncEventQueueFactory
Factory to create theAsyncEventQueue
. Below example illustrates how to get the instance of factory and create theAsyncEventQueue
.Cache c = new CacheFactory().create(); // get AsyncEventQueueFactory from cache AsyncEventQueueFactory factory = cache.createAsyncEventQueueFactory(); // set the attributes on factory factory.setBatchSize(batchSize); factory.setBatchConflationEnabled(isConflation); factory.setMaximumQueueMemory(maxMemory); factory.setParallel(isParallel); . . // create instance of AsyncEventListener AsyncEventListener asyncEventListener = new <AsyncEventListener class>; // create AsyncEventQueue by providing the id and instance of AsyncEventListener AsyncEventQueue asyncQueue = factory.create(asyncQueueId, asyncEventListener);
- Since:
- GemFire 7.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AsyncEventQueueFactory
addGatewayEventFilter(GatewayEventFilter filter)
Adds aGatewayEventFilter
to the attributes of AsyncEventQueue being created by factory.AsyncEventQueue
create(java.lang.String id, AsyncEventListener listener)
Creates theAsyncEventQueue
.AsyncEventQueueFactory
pauseEventDispatching()
Pauses the dispatching of the queued events to the listener.AsyncEventQueueFactory
removeGatewayEventFilter(GatewayEventFilter filter)
Removes the providedGatewayEventFilter
from the attributes of AsyncEventQueue being created by factory.AsyncEventQueueFactory
setBatchConflationEnabled(boolean isConflation)
Sets whether to enable batch conflation forAsyncEventQueue
.AsyncEventQueueFactory
setBatchSize(int size)
Sets the batch size for anAsyncEventQueue
's queue.AsyncEventQueueFactory
setBatchTimeInterval(int interval)
Sets the batch time interval (in milliseconds) for aAsyncEventQueue
.AsyncEventQueueFactory
setDiskStoreName(java.lang.String name)
Sets the disk store name for overflow or persistence.AsyncEventQueueFactory
setDiskSynchronous(boolean isSynchronous)
Sets whether or not the writing to the disk is synchronous.AsyncEventQueueFactory
setDispatcherThreads(int numThreads)
Sets the number of dispatcher threads.AsyncEventQueueFactory
setForwardExpirationDestroy(boolean forward)
Forwards destroy operations from expiration action to AsyncEventQueue.AsyncEventQueueFactory
setGatewayEventSubstitutionListener(GatewayEventSubstitutionFilter filter)
Sets theGatewayEventSubstitutionFilter
.AsyncEventQueueFactory
setMaximumQueueMemory(int memory)
Sets the maximum amount of memory (in MB) for anAsyncEventQueue
's queue.AsyncEventQueueFactory
setOrderPolicy(GatewaySender.OrderPolicy policy)
Sets the order policy for multiple dispatchers.AsyncEventQueueFactory
setParallel(boolean isParallel)
Indicates whether all VMs need to distribute events to remote site.AsyncEventQueueFactory
setPersistent(boolean isPersistent)
Sets whether theAsyncEventQueue
is persistent or not.
-
-
-
Method Detail
-
setDiskStoreName
AsyncEventQueueFactory setDiskStoreName(java.lang.String name)
Sets the disk store name for overflow or persistence.- Parameters:
name
- the disk store name for overflow or persistence- Returns:
- this factory
-
setMaximumQueueMemory
AsyncEventQueueFactory setMaximumQueueMemory(int memory)
Sets the maximum amount of memory (in MB) for anAsyncEventQueue
's queue. Default is 100 MB.- Parameters:
memory
- The maximum amount of memory (in MB) for anAsyncEventQueue
's queue- Returns:
- this factory
-
setDiskSynchronous
AsyncEventQueueFactory setDiskSynchronous(boolean isSynchronous)
Sets whether or not the writing to the disk is synchronous. Default is true.- Parameters:
isSynchronous
- boolean if true indicates synchronous writes- Returns:
- this factory
-
setBatchSize
AsyncEventQueueFactory setBatchSize(int size)
Sets the batch size for anAsyncEventQueue
's queue. Default is 100.- Parameters:
size
- The size of batches sent to itsAsyncEventListener
- Returns:
- this factory
-
setBatchTimeInterval
AsyncEventQueueFactory setBatchTimeInterval(int interval)
Sets the batch time interval (in milliseconds) for aAsyncEventQueue
. Default is 5 ms.- Parameters:
interval
- The maximum time interval that can elapse before a partial batch is sent from aAsyncEventQueue
.- Returns:
- this factory
-
setPersistent
AsyncEventQueueFactory setPersistent(boolean isPersistent)
Sets whether theAsyncEventQueue
is persistent or not. Default is false.- Parameters:
isPersistent
- Whether to enable persistence for anAsyncEventQueue
.- Returns:
- this factory
-
setParallel
AsyncEventQueueFactory setParallel(boolean isParallel)
Indicates whether all VMs need to distribute events to remote site. In this case only the events originating in a particular VM will be in dispatched in order. Default is false.- Parameters:
isParallel
- boolean to indicate whether distribution policy is parallel- Returns:
- this factory
-
setBatchConflationEnabled
AsyncEventQueueFactory setBatchConflationEnabled(boolean isConflation)
Sets whether to enable batch conflation forAsyncEventQueue
. Default is false.- Parameters:
isConflation
- Whether or not to enable batch conflation for batches sent from aAsyncEventQueue
- Returns:
- this factory
-
setDispatcherThreads
AsyncEventQueueFactory setDispatcherThreads(int numThreads)
Sets the number of dispatcher threads. Default is 5.- Parameters:
numThreads
- the number of dispatcher threads- Returns:
- this factory
-
addGatewayEventFilter
AsyncEventQueueFactory addGatewayEventFilter(GatewayEventFilter filter)
Adds aGatewayEventFilter
to the attributes of AsyncEventQueue being created by factory.- Parameters:
filter
- GatewayEventFilter- Returns:
- this factory
-
removeGatewayEventFilter
AsyncEventQueueFactory removeGatewayEventFilter(GatewayEventFilter filter)
Removes the providedGatewayEventFilter
from the attributes of AsyncEventQueue being created by factory.- Parameters:
filter
- theGatewayEventFilter
to remove- Returns:
- this factory
-
setOrderPolicy
AsyncEventQueueFactory setOrderPolicy(GatewaySender.OrderPolicy policy)
Sets the order policy for multiple dispatchers. Default is KEY.- Parameters:
policy
- the order policy for multiple dispatchers- Returns:
- this factory
-
setGatewayEventSubstitutionListener
AsyncEventQueueFactory setGatewayEventSubstitutionListener(GatewayEventSubstitutionFilter filter)
Sets theGatewayEventSubstitutionFilter
.- Parameters:
filter
- TheGatewayEventSubstitutionFilter
- Returns:
- this factory
-
setForwardExpirationDestroy
AsyncEventQueueFactory setForwardExpirationDestroy(boolean forward)
Forwards destroy operations from expiration action to AsyncEventQueue. By default the expiration destroy events are not added to AEQ, by setting this attribute to true adds destroy event to AEQ.- Parameters:
forward
- boolean to indicate whether to forward expiration destroy events.- Returns:
- this factory
-
pauseEventDispatching
AsyncEventQueueFactory pauseEventDispatching()
Pauses the dispatching of the queued events to the listener.- Returns:
- this factory
-
create
AsyncEventQueue create(java.lang.String id, AsyncEventListener listener)
Creates theAsyncEventQueue
. It accepts Id of AsyncEventQueue and instance of AsyncEventListener. Multiple queues can be created using Same listener instance. So, the instance ofAsyncEventListener
should be thread safe in that case. TheAsyncEventListener
will start receiving events when theAsyncEventQueue
is created.- Parameters:
id
- Id of AsyncEventQueuelistener
-AsyncEventListener
to be added to the regions that are configured to use this queue.- Returns:
- the created
AsyncEventQueue
-
-