C# 클래스 SWFProcessing.Swiffotron.Processor.Caches

파일 보기 프로젝트 열기: WeeWorld/Swiffotron 1 사용 예제들

공개 메소드들

메소드 설명
Caches ( ) : System.Collections.Generic
Get ( SwiffotronContext ctx, string key ) : object

Retrieves a cached object given its fully qualified cache key of the form [cache name]:[cache key]

Interrogate ( string>.Dictionary info ) : void

Get some useful information for debug purposes letting us find out how things are set up. I should list them all here, really.

Put ( SwiffotronContext ctx, string key, object v ) : void

Caches an object under a key in a given cache, specified as part of the cache key. GetCacheItem

Register ( string name, ISwiffotronCache cache ) : void

메소드 상세

Caches() 공개 메소드

public Caches ( ) : System.Collections.Generic
리턴 System.Collections.Generic

Get() 공개 메소드

Retrieves a cached object given its fully qualified cache key of the form [cache name]:[cache key]
public Get ( SwiffotronContext ctx, string key ) : object
ctx SwiffotronContext
key string Full cache path
리턴 object

Interrogate() 공개 메소드

Get some useful information for debug purposes letting us find out how things are set up. I should list them all here, really.
public Interrogate ( string>.Dictionary info ) : void
info string>.Dictionary An accumulating big map of arbitrary string->string data /// that you can pick apart and use as you so desire.
리턴 void

Put() 공개 메소드

Caches an object under a key in a given cache, specified as part of the cache key. GetCacheItem
public Put ( SwiffotronContext ctx, string key, object v ) : void
ctx SwiffotronContext
key string Full cache path
v object The object to cache
리턴 void

Register() 공개 메소드

public Register ( string name, ISwiffotronCache cache ) : void
name string
cache ISwiffotronCache
리턴 void