Package com.networknt.schema
Class AbstractCollector<E>
- java.lang.Object
-
- com.networknt.schema.AbstractCollector<E>
-
-
Constructor Summary
Constructors Constructor Description AbstractCollector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
combine(Object object)
This method should be called by the intermediate touch points that want to combine the data being collected by this collector.
-
-
-
Method Detail
-
combine
public void combine(Object object)
Description copied from interface:Collector
This method should be called by the intermediate touch points that want to combine the data being collected by this collector. This is an optional method and could be used when the same collector is used for collecting data at multiple touch points or accumulating data at same touch point.
-
-