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

io.relayr.java.api.CloudApi Maven / Gradle / Ivy

The newest version!
package io.relayr.java.api;

import java.util.List;

import io.relayr.java.model.LogEvent;
import io.relayr.java.model.Status;
import retrofit.http.Body;
import retrofit.http.GET;
import retrofit.http.POST;
import rx.Observable;

public interface CloudApi {

    @Deprecated @POST("/client/log") Observable logMessage(@Body List events);

    /**
     * Checks whether server is up
     * @return an {@link Observable} with String status of the server
     */
    @GET("/server-status") Observable getServerStatus();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy