Class InflatingPipe<I extends Observation,O extends Observation>
- java.lang.Object
-
- org.processmining.specpp.supervision.piping.AbstractObservable<O>
-
- org.processmining.specpp.supervision.piping.AbstractAsyncAwareObservable<O>
-
- org.processmining.specpp.supervision.piping.InflatingPipe<I,O>
-
- All Implemented Interfaces:
java.util.function.Consumer<I>,AsyncAwareObservable<O>,Observable<O>,ObservationPipe<I,O>,Observer<I>
- Direct Known Subclasses:
UnpackingPipe
public class InflatingPipe<I extends Observation,O extends Observation> extends AbstractAsyncAwareObservable<O> implements ObservationPipe<I,O>
-
-
Constructor Summary
Constructors Constructor Description InflatingPipe(java.util.function.Function<I,Observations<O>> inflator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Observations<O>inflate(I observation)voidobserve(I observation)-
Methods inherited from class org.processmining.specpp.supervision.piping.AbstractAsyncAwareObservable
addObserver, getAsyncObservers, getNonAsyncObservers
-
Methods inherited from class org.processmining.specpp.supervision.piping.AbstractObservable
clearObservers, getObservers, publish, removeObserver
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.processmining.specpp.supervision.piping.AsyncAwareObservable
publishFutureToAsyncObservers, publishFutureToNonAsyncObservers
-
Methods inherited from interface org.processmining.specpp.supervision.piping.Observable
addObserver, beObservedBy, clearObservers, getObservers, publish, removeObserver
-
-
-
-
Constructor Detail
-
InflatingPipe
public InflatingPipe(java.util.function.Function<I,Observations<O>> inflator)
-
-
Method Detail
-
inflate
protected Observations<O> inflate(I observation)
-
observe
public void observe(I observation)
- Specified by:
observein interfaceObserver<I extends Observation>
-
-