C# 클래스 Air.LocalAirStorage

LocalAirStorage class.
상속: IAirStorage
파일 보기 프로젝트 열기: tmitchel2/Air 1 사용 예제들

공개 메소드들

메소드 설명
AddAsync ( long key, byte value ) : Task

Adds the specified key.

ContainsAsync ( long key ) : Task

Determines whether [contains] [the specified key].

GetLockAsync ( long key ) : Task

Gets the lock async.

LocalAirStorage ( ) : System

Initializes a new instance of the LocalAirStorage class.

ReleaseLockAsync ( long key ) : Task

Releases the lock async.

RemoveAsync ( long key ) : Task

Removes the specified key.

SetAsync ( long key, byte value ) : Task

Sets the async.

TryGetAsync ( long key ) : Task

Gets the specified key.

메소드 상세

AddAsync() 공개 메소드

Adds the specified key.
public AddAsync ( long key, byte value ) : Task
key long The key.
value byte The value.
리턴 Task

ContainsAsync() 공개 메소드

Determines whether [contains] [the specified key].
public ContainsAsync ( long key ) : Task
key long The key.
리턴 Task

GetLockAsync() 공개 메소드

Gets the lock async.
public GetLockAsync ( long key ) : Task
key long The key.
리턴 Task

LocalAirStorage() 공개 메소드

Initializes a new instance of the LocalAirStorage class.
public LocalAirStorage ( ) : System
리턴 System

ReleaseLockAsync() 공개 메소드

Releases the lock async.
public ReleaseLockAsync ( long key ) : Task
key long The key.
리턴 Task

RemoveAsync() 공개 메소드

Removes the specified key.
public RemoveAsync ( long key ) : Task
key long The key.
리턴 Task

SetAsync() 공개 메소드

Sets the async.
public SetAsync ( long key, byte value ) : Task
key long The key.
value byte The value.
리턴 Task

TryGetAsync() 공개 메소드

Gets the specified key.
public TryGetAsync ( long key ) : Task
key long The key.
리턴 Task