All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.timeline.ItemReceiver Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
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