org.yamcs.timeline.ItemReceiver Maven / Gradle / Ivy
package org.yamcs.timeline;
public interface ItemReceiver {
void next(TimelineItem item);
/**
* If a paged request has been performed, the token can be used to retrieve the next chunk.
*
* token is null if there was no limit or there were less items than the specified limit
*/
void complete(String token);
void completeExceptionally(Throwable t);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy