JBoss Data Grid HotRod C# Client  7.2.0
Namespaces | Classes | Enumerations
Infinispan.HotRod Namespace Reference

Namespaces

namespace  Config
 
namespace  Event
 
namespace  Exceptions
 
namespace  Transport
 

Classes

class  CompatibilityMarshaller
 
class  IdentityMarshaller
 
interface  IMarshaller
 Hotrod is a binary protocol so the object passed in by the user are being marshalled into a binary format using an implementation of this interface. Users can implement this interface and develop their own marshaller without using the default marshaller. More...
 
interface  IMetadataValue
 Besides the value, also contains a version and expiration information. Time values are server time representations. More...
 
class  InternalFailOverRequestBalancingStrategy
 
interface  IRemoteCache
 Provides remote reference to a Hot Rod server/cluster. More...
 
interface  IVersionedValue
 A value and the version associated with this value. More...
 
class  RemoteCacheManager
 Factory for IRemoteCache instances. More...
 
class  ServerStatistics
 Defines the possible list of statistics defined by the Hot Rod server. More...
 

Enumerations

enum  Flags : int { Flags.FORCE_RETURN_VALUE = 0x01, Flags.DEFAULT_LIFESPAN = 0x02, Flags.DEFAULT_MAXIDLE = 0x04 }
 Defines all the flags available in the Hot Rod client that can influence the behavior of operations. More...
 
enum  NearCacheMode { NearCacheMode.DISABLED = 0, NearCacheMode.INVALIDATED = 1 }
 Near cache mode More...
 
enum  TimeUnit {
  TimeUnit.NANOSECONDS, TimeUnit.MICROSECONDS, TimeUnit.MILLISECONDS, TimeUnit.SECONDS,
  TimeUnit.MINUTES, TimeUnit.HOURS, TimeUnit.DAYS
}
 Time unit granularities. More...
 

Enumeration Type Documentation

enum Infinispan.HotRod.Flags : int
strong

Defines all the flags available in the Hot Rod client that can influence the behavior of operations.

Enumerator
FORCE_RETURN_VALUE 

By default previously existing values are not returned by map operations. This flag forces the values to be returned.

DEFAULT_LIFESPAN 

This flag can either be used as a request flag during a put operation to mean that the default server lifespan should be applied or as a response flag meaning that the return entry has a default lifespan value.

DEFAULT_MAXIDLE 

This flag can either be used as a request flag during a put operation to mean that the default server maxIdle should be applied or as a response flag meaning that the return entry has a default maxIdle value.

Near cache mode

Enumerator
DISABLED 
INVALIDATED 

Time unit granularities.

Enumerator
NANOSECONDS 
MICROSECONDS 
MILLISECONDS 
SECONDS 
MINUTES 
HOURS 
DAYS