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

com.firebase.geofire.AndroidEventRaiser Maven / Gradle / Ivy

package com.firebase.geofire;

import android.os.Handler;
import android.os.Looper;

class AndroidEventRaiser implements EventRaiser {
    private final Handler mainThreadHandler;

    public AndroidEventRaiser() {
        this.mainThreadHandler = new Handler(Looper.getMainLooper());
    }

    @Override
    public void raiseEvent(Runnable r) {
        this.mainThreadHandler.post(r);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy