Example usage for org.springframework.data.gemfire.listener ContinuousQueryListener interface-usage

List of usage examples for org.springframework.data.gemfire.listener ContinuousQueryListener interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.gemfire.listener ContinuousQueryListener interface-usage.

Usage

From source file demo.vmware.client.ContinuousQueryListenerSample.java

/**
 * This uses the listener interface but it could instead be plugged into ContinuousQueryListenerAdapter which would let
 * us create custom messages for each even type
 * 
 */
public class ContinuousQueryListenerSample implements ContinuousQueryListener {

From source file org.springframework.integration.gemfire.inbound.ContinuousQueryMessageProducer.java

/**
 * Responds to a Gemfire continuous query (set using the #query field) that is
 * constantly evaluated against a cache
 * {@link com.gemstone.gemfire.cache.Region}. This is much faster than
 * re-querying the cache manually.
 *

From source file org.springframework.data.gemfire.listener.adapter.ContinuousQueryListenerAdapter.java

/**
 * Event listener adapter that delegates the handling of messages to target
 * listener methods via reflection, with flexible event type conversion.
 * Allows listener methods to operate on event content types, completely
 * independent from the GemFire API.
 *