C# Class Spring.Retry.Retry.Policy.MapRetryContextCache

Map-based implementation of IRetryContextCache. The map backing the cache of contexts is synchronized.
Inheritance: IRetryContextCache
ファイルを表示 Open project: spring-projects/spring-net-retry

Public Properties

Property Type Description
DEFAULT_CAPACITY int

Public Methods

Method Description
ContainsKey ( object key ) : bool

The contains key.

Get ( object key ) : IRetryContext

The get.

MapRetryContextCache ( ) : System.Collections.Concurrent

Initializes a new instance of the MapRetryContextCache class with default capacity.

MapRetryContextCache ( int defaultCapacity ) : System.Collections.Concurrent

Initializes a new instance of the MapRetryContextCache class.

Put ( object key, IRetryContext context ) : void

The put.

Remove ( object key ) : void

The remove.

Method Details

ContainsKey() public method

The contains key.
public ContainsKey ( object key ) : bool
key object The key.
return bool

Get() public method

The get.
public Get ( object key ) : IRetryContext
key object The key.
return IRetryContext

MapRetryContextCache() public method

Initializes a new instance of the MapRetryContextCache class with default capacity.
public MapRetryContextCache ( ) : System.Collections.Concurrent
return System.Collections.Concurrent

MapRetryContextCache() public method

Initializes a new instance of the MapRetryContextCache class.
public MapRetryContextCache ( int defaultCapacity ) : System.Collections.Concurrent
defaultCapacity int The default capacity.
return System.Collections.Concurrent

Put() public method

The put.
public Put ( object key, IRetryContext context ) : void
key object The key.
context IRetryContext The context.
return void

Remove() public method

The remove.
public Remove ( object key ) : void
key object The key.
return void

Property Details

DEFAULT_CAPACITY public_oe static_oe property

Default value for maximum capacity of the cache. This is set to a reasonably low value (4096) to avoid users inadvertently filling the cache with item keys that are inconsistent.
public static int DEFAULT_CAPACITY
return int