Package jmri.server.json.throttle
Class JsonThrottleSocketService
- java.lang.Object
-
- jmri.server.json.JsonSocketService<JsonThrottleHttpService>
-
- jmri.server.json.throttle.JsonThrottleSocketService
-
public class JsonThrottleSocketService extends JsonSocketService<JsonThrottleHttpService>
-
-
Field Summary
-
Fields inherited from class jmri.server.json.JsonSocketService
connection, service
-
-
Constructor Summary
Constructors Constructor Description JsonThrottleSocketService(JsonConnection connection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonClose()Perform any teardown required when closing a connection.voidonList(java.lang.String type, com.fasterxml.jackson.databind.JsonNode data, JsonRequest request)Handle a request for a list of objects.voidonMessage(java.lang.String type, com.fasterxml.jackson.databind.JsonNode data, JsonRequest request)Handle an inbound message.(package private) voidrelease(JsonThrottle throttle)voidsendMessage(JsonThrottle throttle, com.fasterxml.jackson.databind.node.ObjectNode data)-
Methods inherited from class jmri.server.json.JsonSocketService
getConnection, getHttpService, getLocale, getVersion
-
-
-
-
Constructor Detail
-
JsonThrottleSocketService
public JsonThrottleSocketService(JsonConnection connection)
-
-
Method Detail
-
onMessage
public void onMessage(java.lang.String type, com.fasterxml.jackson.databind.JsonNode data, JsonRequest request) throws java.io.IOException, JmriException, JsonException
Description copied from class:JsonSocketServiceHandle an inbound message.- Specified by:
onMessagein classJsonSocketService<JsonThrottleHttpService>- Parameters:
type- The service type; if the implementing service responds to multiple types, it will need to use this to handle data correctlydata- JSON data; the contents of this will depend on the implementing servicerequest- The JSON request- Throws:
java.io.IOException- Thrown if the service cannot send a response; this will cause the JSON Server to close its connection to the client if openJmriException- Thrown if the request cannot be handled; throwing this will cause the JSON Server to pass a 500 UnsupportedOperation message to the clientJsonException- Thrown if the service needs to pass an error message back to the client
-
onList
public void onList(java.lang.String type, com.fasterxml.jackson.databind.JsonNode data, JsonRequest request) throws JsonException
Description copied from class:JsonSocketServiceHandle a request for a list of objects. Note that this should not create listeners for items in the list, but should only create listeners for the object providing the list, if applicable.- Specified by:
onListin classJsonSocketService<JsonThrottleHttpService>- Parameters:
type- The service type; if the implementing service responds to multiple types, it will need to use this to handle data correctlydata- JSON data; the contents of this will depend on the implementing servicerequest- The JSON request- Throws:
JsonException- If the service needs to pass an error message back to the client; implementing services may throw a JsonException with code 400 and the localized message "UnlistableService" to indicate thattypeshould not be listed
-
onClose
public void onClose()
Description copied from class:JsonSocketServicePerform any teardown required when closing a connection.- Specified by:
onClosein classJsonSocketService<JsonThrottleHttpService>
-
release
void release(JsonThrottle throttle)
-
sendMessage
public void sendMessage(JsonThrottle throttle, com.fasterxml.jackson.databind.node.ObjectNode data) throws java.io.IOException
- Throws:
java.io.IOException
-
-