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

io.nextop.client.MessageContext Maven / Gradle / Ivy

The newest version!
package io.nextop.client;

import rx.Scheduler;

/** thread-safe */
public interface MessageContext {

    void post(Runnable r);

    void postDelayed(Runnable r, int delayMs);

    /** this context should be correctly serialized,
     * so multiple #createWorker should execute jobs in order of input across all */
    Scheduler getScheduler();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy