org.yamcs.activities.ActivityReceiver Maven / Gradle / Ivy
package org.yamcs.activities;
public interface ActivityReceiver {
void next(Activity activity);
/**
* 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