OnlineMonitor

public interface OnlineMonitor<T extends Comparable<T>, V, R>

Primary interface for online monitoring.

Parameters

<T>

The time domain of the monitoring process

<V>

The domain of the signal being monitored

<R>

Semantic Interpretation Semiring Type

Inheritors

Functions

Link copied to clipboard
public abstract TimeSignal<T, R> getResult()
Returns the result of the monitoring process.
Link copied to clipboard
public abstract List<TimeChain<T, R>> monitor(TimeChain<T, V> updates)
public abstract List<TimeChain<T, R>> monitor(Update<T, V> signalUpdate)
Execution starter of the monitoring process.