Interface StatusCake
public interface StatusCake
Interface to StatusCake API.
-
Method Summary
Modifier and TypeMethodDescriptionstatic StatusCake
createClient
(String url) Get a client for the API.void
pushUpdate
(String primaryKey, String testID, int time) Send a push update.
-
Method Details
-
pushUpdate
@GET @Path("") void pushUpdate(@QueryParam("PK") String primaryKey, @QueryParam("TestID") String testID, @QueryParam("time") int time) Send a push update.- Parameters:
primaryKey
- The key of the update.testID
- The ID of the test within the set.time
- The "time" or any performance of the status.
-
createClient
Get a client for the API.- Parameters:
url
- The URL to connect to.- Returns:
- A proxy of the API.
-