[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Retrieves an entry from the cache. The retrieved entry becomes the MRU (most recently used) entry.

Namespace: net.esper.eql.db
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Function GetCached ( _
	lookupKeys As Object() _
) As IList(Of EventBean)
C#
public IList<EventBean> GetCached (
	Object[] lookupKeys
)
Visual C++
public:
virtual IList<EventBean^>^ GetCached (
	array<Object^>^ lookupKeys
) sealed

Parameters

lookupKeys
System.Object[]
the key whose associated value is to be returned.

Return Value

the value associated to this key, or null if no value with this key exists in the cache.