C# Класс Spring.Retry.Retry.Policy.MapRetryContextCache

Map-based implementation of IRetryContextCache. The map backing the cache of contexts is synchronized.
Наследование: IRetryContextCache
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
DEFAULT_CAPACITY int

Открытые методы

Метод Описание
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.

Описание методов

ContainsKey() публичный Метод

The contains key.
public ContainsKey ( object key ) : bool
key object The key.
Результат bool

Get() публичный Метод

The get.
public Get ( object key ) : IRetryContext
key object The key.
Результат IRetryContext

MapRetryContextCache() публичный Метод

Initializes a new instance of the MapRetryContextCache class with default capacity.
public MapRetryContextCache ( ) : System.Collections.Concurrent
Результат System.Collections.Concurrent

MapRetryContextCache() публичный Метод

Initializes a new instance of the MapRetryContextCache class.
public MapRetryContextCache ( int defaultCapacity ) : System.Collections.Concurrent
defaultCapacity int The default capacity.
Результат System.Collections.Concurrent

Put() публичный Метод

The put.
public Put ( object key, IRetryContext context ) : void
key object The key.
context IRetryContext The context.
Результат void

Remove() публичный Метод

The remove.
public Remove ( object key ) : void
key object The key.
Результат void

Описание свойств

DEFAULT_CAPACITY публичное статическое свойство

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
Результат int