com.gemstone.gemfire.cache.ClientSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-core Show documentation
Show all versions of gemfire-core Show documentation
SnappyData store based off Pivotal GemFireXD
/*
* Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
*
* Licensed 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. See accompanying
* LICENSE file.
*/
package com.gemstone.gemfire.cache;
/**
* Class ClientSession
represents a client connection on the
* server. ClientSessions
can be used from the cache server to
* perform interest registrations and unregistrations on behalf of clients.
* ClientSessions
are only available on the cache server.
*
*
* The ClientSession is often used in conjunction with a callback
* EntryEvent
as shown below.
*
*
* String durableClientId = ...; // Some part of the event's key or value would contain this id
* Cache cache = CacheFactory.getAnyInstance();
* CacheServer cacheServer = (CacheServer) cache.getCacheServers().iterator().next();
* ClientSession clientSession = cacheServer.getClientSession(durableClientId);
* clientSession.registerInterest(event.getRegion().getFullPath(), event.getKey(), InterestResultPolicy.KEYS_VALUES, true);
*
*
* @author Barry Oglesby
* @since 6.0
* @see com.gemstone.gemfire.cache.server.CacheServer#getClientSession(String)
* getClientSession
* @see com.gemstone.gemfire.cache.server.CacheServer#getClientSession(com.gemstone.gemfire.distributed.DistributedMember)
* getClientSession
*
*/
public interface ClientSession {
/**
* Registers interest in a particular region and key
*
* @param regionName
* The name of the region in which to register interest
* @param keyOfInterest
* The key on which to register interest
* @param policy
* The {@link com.gemstone.gemfire.cache.InterestResultPolicy}. Note:
* For the special token 'ALL_KEYS' and lists of keys, values are not
* pushed to the client.
* @param isDurable
* Whether the interest is durable
* @throws IllegalStateException
* if this is not the primary server for the given client
*/
public void registerInterest(String regionName, Object keyOfInterest,
InterestResultPolicy policy, boolean isDurable);
/**
* Registers interest in a particular region and key
*
* @param regionName
* The name of the region in which to register interest
* @param keyOfInterest
* The key to on which to register interest
* @param policy
* The {@link com.gemstone.gemfire.cache.InterestResultPolicy}. Note:
* For the special token 'ALL_KEYS' and lists of keys, values are not
* pushed to the client.
* @param isDurable
* Whether the interest is durable
* @param receiveValues
* Whether to receive create or update events as invalidates similar
* to notify-by-subscription false. The default is true.
* @throws IllegalStateException
* if this is not the primary server for the given client
* @since 6.5
*/
public void registerInterest(String regionName, Object keyOfInterest,
InterestResultPolicy policy, boolean isDurable, boolean receiveValues);
/**
* Registers interest in a particular region and regular expression
*
* @param regionName
* The name of the region in which to register interest
* @param regex
* The regular expression on which to register interest
* @param isDurable
* Whether the interest is durable
* @throws IllegalStateException
* if this is not the primary server for the given client
*/
public void registerInterestRegex(String regionName, String regex,
boolean isDurable);
/**
* Registers interest in a particular region and regular expression
*
* @param regionName
* The name of the region in which to register interest
* @param regex
* The regular expression to on which to register interest
* @param isDurable
* Whether the interest is durable
* @param receiveValues
* Whether to receive create or update events as invalidates similar
* to notify-by-subscription false. The default is true.
* @throws IllegalStateException
* if this is not the primary server for the given client
* @since 6.5
*/
public void registerInterestRegex(String regionName, String regex,
boolean isDurable, boolean receiveValues);
/**
* Unregisters interest in a particular region and key
*
* @param regionName
* The name of the region in which to unregister interest
* @param keyOfInterest
* The key on which to unregister interest
* @param isDurable
* Whether the interest is durable
* @throws IllegalStateException
* if this is not the primary server for the given client
*/
public void unregisterInterest(String regionName, Object keyOfInterest,
boolean isDurable);
/**
* Unregisters interest in a particular region and key
*
* @param regionName
* The name of the region in which to unregister interest
* @param keyOfInterest
* The key on which to unregister interest
* @param isDurable
* Whether the interest is durable
* @param receiveValues
* Whether to receive create or update events as invalidates similar
* to notify-by-subscription false. The default is true.
* @throws IllegalStateException
* if this is not the primary server for the given client
* @since 6.5
*/
public void unregisterInterest(String regionName, Object keyOfInterest,
boolean isDurable, boolean receiveValues);
/**
* Unregisters interest in a particular region and regular expression
*
* @param regionName
* The name of the region in which to unregister interest
* @param regex
* The regular expression on which to unregister interest
* @param isDurable
* Whether the interest is durable
* @throws IllegalStateException
* if this is not the primary server for the given client
*/
public void unregisterInterestRegex(String regionName, String regex,
boolean isDurable);
/**
* Unregisters interest in a particular region and regular expression
*
* @param regionName
* The name of the region in which to unregister interest
* @param regex
* The regular expression on which to unregister interest
* @param isDurable
* Whether the interest is durable
* @param receiveValues
* Whether to receive create or update events as invalidates similar
* to notify-by-subscription false. The default is true.
* @throws IllegalStateException
* if this is not the primary server for the given client
* @since 6.5
*/
public void unregisterInterestRegex(String regionName, String regex,
boolean isDurable, boolean receiveValues);
/**
* Returns whether this server is the primary for this client
*
* @return whether this server is the primary for this client
*/
public boolean isPrimary();
}