blob: b06137aa9954eb7fca51ab567d8c24e79db985de [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.cache.asyncqueue;
import java.util.List;
import org.apache.geode.cache.wan.GatewayEventFilter;
import org.apache.geode.cache.wan.GatewayEventSubstitutionFilter;
import org.apache.geode.cache.wan.GatewaySender.OrderPolicy;
/**
* Interface of AsyncEventQueue. This represents the channel over which the events are delivered to
* the <code>AsyncEventListener</code>.
*
* @since GemFire 7.0
*/
public interface AsyncEventQueue {
/**
* @return String Id of the AsyncEventQueue
*/
String getId();
/**
* The Disk store that is required for overflow and persistence
*
*/
String getDiskStoreName();// for overflow and persistence
/**
* The maximum memory after which the data needs to be overflowed to disk. Default is 100 MB.
*
*/
int getMaximumQueueMemory();// for overflow
/**
* Represents the size of a batch that gets delivered over the AsyncEventQueue. Default batchSize
* is 100.
*
*/
int getBatchSize();
/**
* Represents the maximum time interval that can elapse before a batch is sent from
* <code>AsyncEventQueue</code>. Default batchTimeInterval is 5 ms.
*
*/
int getBatchTimeInterval();
/**
* Represents whether batch conflation is enabled for batches sent from
* <code>AsyncEventQueue</code>. Default is false.
*
*/
boolean isBatchConflationEnabled();
/**
* Represents whether the AsyncEventQueue is configured to be persistent or non-persistent.
* Default is false.
*
*/
boolean isPersistent();
/**
* Represents whether writing to disk is synchronous or not. Default is true.
*
*/
boolean isDiskSynchronous();
/**
* Represents whether the queue is primary or secondary. Events get delivered only by the primary
* queue. If the primary queue goes down then the secondary queue first becomes primary and then
* starts delivering the events.
*
*/
boolean isPrimary();
/**
* The <code>AsyncEventListener</code> that is attached to the queue. All the event passing over
* the queue are delivered to attached listener.
*
* @return AsyncEventListener Implementation of AsyncEventListener
*/
AsyncEventListener getAsyncEventListener();
/**
* Represents whether this queue is parallel (higher throughput) or serial.
*
* @return boolean True if the queue is parallel, false otherwise.
*/
boolean isParallel();
/**
* Returns the number of dispatcher threads working for this <code>AsyncEventQueue</code>. Default
* number of dispatcher threads is 5.
*
* @return the number of dispatcher threads working for this <code>AsyncEventQueue</code>
*/
int getDispatcherThreads();
/**
* Returns the order policy followed while dispatching the events to AsyncEventListener. Order
* policy is set only when dispatcher threads are > 1. Default order policy is KEY.
*
* @return the order policy followed while dispatching the events to AsyncEventListener.
*/
OrderPolicy getOrderPolicy();
/**
* Returns the number of entries in this <code>AsyncEventQueue</code>.
*
* @return the number of entries in this <code>AsyncEventQueue</code>.
*/
int size();
/**
* Returns the <code>GatewayEventFilters</code> for this <code>AsyncEventQueue</code>
*
* @return the <code>GatewayEventFilters</code> for this <code>AsyncEventQueue</code>
*/
List<GatewayEventFilter> getGatewayEventFilters();
/**
* Returns the <code>GatewayEventSubstitutionFilter</code> for this <code>AsyncEventQueue</code>
*
* @return the <code>GatewayEventSubstitutionFilter</code> for this <code>AsyncEventQueue</code>
*/
GatewayEventSubstitutionFilter getGatewayEventSubstitutionFilter();
/**
* Represents if expiration destroy operations are forwarded (passed) to
* <code>AsyncEventListener</code>.
*
* @return boolean True if expiration destroy operations are forwarded.
*/
boolean isForwardExpirationDestroy();
/**
* Resumes the dispatching of then events queued to the listener.
*/
void resumeEventDispatching();
/**
* Returns whether the queue is processing queued events or is paused
*/
boolean isDispatchingPaused();
}