Package | Description |
---|---|
com.espertech.esper.common.client.scopetest |
Test framework classes.
|
com.espertech.esper.runtime.client |
Runtime API: Runs compiled EPL.
|
Modifier and Type | Method and Description |
---|---|
static void |
EPAssertionUtil.assertPropsPerRow(java.util.Iterator<EventBean> iterator,
SafeIterator<EventBean> safeIterator,
java.lang.String[] propertyNames,
java.lang.Object[][] expected)
Compare the property values returned by events of both iterators with the expected values, using exact-order semantics.
|
static void |
EPAssertionUtil.assertPropsPerRowAnyOrder(java.util.Iterator<EventBean> iterator,
SafeIterator<EventBean> safeIterator,
java.lang.String[] propertyNames,
java.lang.Object[][] expected)
Compare the property values returned by events of both iterators with the expected values, using any-order semantics.
|
static void |
EPAssertionUtil.assertPropsPerRowAnyOrder(SafeIterator<EventBean> safeIterator,
java.lang.String[] propertyNames,
java.lang.Object[][] expected)
Compare the property values returned by events of the iterator with the expected values, using any-order semantics.
|
Modifier and Type | Method and Description |
---|---|
SafeIterator<EventBean> |
EPIterable.safeIterator()
Returns a concurrency-safe iterator that iterates over events representing statement results (pull API)
in the face of concurrent event processing by further threads.
|
SafeIterator<EventBean> |
EPIterable.safeIterator(ContextPartitionSelector selector)
For use with statements that have a context declared and that may therefore have multiple context partitions,
allows to safe-iterate over context partitions selectively.
|