|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface EsperStatementOperations
Esper support the capability to 'pull' query filter results from a statement.
This interface expresses the simplified Esper 'pull' query operations.
For more information on 'pull' operations, see ://esper.codehaus.org
/esper-3.3.0/doc/reference/en/html/api.html#api-receive-results
EsperStatement| Method Summary | ||
|---|---|---|
|
concurrentSafeQuery(ParameterizedEsperRowMapper<T> rm)
Performs a concurrency safe 'pull' to retrieve query filtered results from the esper statement. |
|
|
concurrentSafeQueryForObject(ParameterizedEsperRowMapper<T> rm)
Performs a concurrency safe 'pull' to retrieve query filtered results from the esper statement. |
|
|
concurrentUnsafeQuery(ParameterizedEsperRowMapper<T> rm)
Performs a concurrency unsafe 'pull' (i.e. |
|
|
concurrentUnsafeQueryForObject(ParameterizedEsperRowMapper<T> rm)
Performs a concurrency unsafe 'pull' (i.e. |
|
| Method Detail |
|---|
<T> T concurrentSafeQueryForObject(ParameterizedEsperRowMapper<T> rm)
rm - the ParameterizedEsperRowMapper to use for result
mapping
<T> java.util.List<T> concurrentSafeQuery(ParameterizedEsperRowMapper<T> rm)
ParameterizedEsperRowMapper is then used to populate the objects
that are then collected together and returned as a List.
rm - the ParameterizedEsperRowMapper to use for result
mapping
<T> T concurrentUnsafeQueryForObject(ParameterizedEsperRowMapper<T> rm)
ParameterizedEsperRowMapper is then used to populate
the object that is returned.
rm - the ParameterizedEsperRowMapper to use for result
mapping
<T> java.util.List<T> concurrentUnsafeQuery(ParameterizedEsperRowMapper<T> rm)
ParameterizedEsperRowMapper is then
used to populate the objects that are then collected together and
returned as a List.
rm - the ParameterizedEsperRowMapper to use for result
mapping
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||