|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.fusesource.hawtdispatch.EventAggregators
public class EventAggregators
| Field Summary | |
|---|---|
static EventAggregator<Integer,Integer> |
INTEGER_ADD
An EventAggregator that coalesces integer data obtained via calls to CustomDispatchSource.merge(Object). |
static EventAggregator<Integer,Integer> |
INTEGER_OR
An EventAggregator that coalesces integer data obtained via calls to CustomDispatchSource.merge(Object). |
static EventAggregator<Long,Long> |
LONG_ADD
An EventAggregator that coalesces long data obtained via calls to CustomDispatchSource.merge(Object). |
static EventAggregator<Long,Long> |
LONG_OR
An EventAggregator that coalesces long data obtained via calls to CustomDispatchSource.merge(Object). |
| Constructor Summary | |
|---|---|
EventAggregators()
|
|
| Method Summary | ||
|---|---|---|
static
|
hashSet()
An EventAggregator that coalesces object data obtained via calls to CustomDispatchSource.merge(Object) into a hash set. |
|
static
|
linkedList()
An EventAggregator that coalesces object data obtained via calls to CustomDispatchSource.merge(Object) into a linked list. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final EventAggregator<Integer,Integer> INTEGER_ADD
CustomDispatchSource.merge(Object). Addition is used to coalesce the data.
public static final EventAggregator<Long,Long> LONG_ADD
CustomDispatchSource.merge(Object). Addition is used to coalesce the data.
public static final EventAggregator<Integer,Integer> INTEGER_OR
CustomDispatchSource.merge(Object). Bit-wise or is used to coalesce the data.
public static final EventAggregator<Long,Long> LONG_OR
CustomDispatchSource.merge(Object). Bit-wise or is used to coalesce the data.
| Constructor Detail |
|---|
public EventAggregators()
| Method Detail |
|---|
public static <T> EventAggregator<T,LinkedList<T>> linkedList()
CustomDispatchSource.merge(Object) into a linked list.
public static <T> EventAggregator<T,HashSet<T>> hashSet()
CustomDispatchSource.merge(Object) into a hash set.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||