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

org.rajivprab.sava.fcm.Fcm Maven / Gradle / Ivy

package org.rajivprab.sava.fcm;

import com.google.android.gcm.server.Result;

public interface Fcm {
    void push(PushNotification pushNotification);

    static Fcm build(String serverKey, ResultChecker checker) {
        return new FcmImpl(serverKey, checker);
    }

    interface ResultChecker {
        /**
         * Returns true if there were no errors.
         * See javadocs for {@link Result}, for hints on how to parse the result
         */
        boolean check(Result result, String device);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy