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

com.droidkit.actors.extensions.RunnableExtension Maven / Gradle / Ivy

Go to download

DroidKit Actors is simple actor model implementation for java and Android

There is a newer version: 0.6.1
Show newest version
package com.droidkit.actors.extensions;

/**
 * Created by ex3ndr on 11.09.14.
 */
public class RunnableExtension implements ActorExtension {
    @Override
    public void preStart() {

    }

    @Override
    public boolean onReceive(Object message) {
        if (message instanceof Runnable) {
            ((Runnable) message).run();
            return true;
        }
        return false;
    }

    @Override
    public void postStop() {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy