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

com.kolibrifx.plovercrest.server.streams.StreamDataTriggerer Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2017, KolibriFX AS. Licensed under the Apache License, version 2.0.
 */

package com.kolibrifx.plovercrest.server.streams;

/**
 * Interface that can be used to trigger the polling system when new data is available on a stream.
 * 

* This is typically used from {@link PollableReader#poll} after triggering * {@link StreamObserver#onObserveEnd}. */ public interface StreamDataTriggerer { void wakeUpAtTime(long clockMillis); void wakeUpNow(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy