Uses of Class
org.ovirt.vdsm.jsonrpc.client.JsonRpcEvent
-
Packages that use JsonRpcEvent Package Description org.ovirt.vdsm.jsonrpc.client org.ovirt.vdsm.jsonrpc.client.events -
-
Uses of JsonRpcEvent in org.ovirt.vdsm.jsonrpc.client
Methods in org.ovirt.vdsm.jsonrpc.client that return JsonRpcEvent Modifier and Type Method Description static JsonRpcEvent
JsonRpcEvent. fromByteArray(byte[] message)
static JsonRpcEvent
JsonRpcEvent. fromJsonNode(com.fasterxml.jackson.databind.JsonNode node)
Validates and buildsJsonRpcEvent
based on provided json node.static JsonRpcEvent
JsonRpcEvent. fromMethodAndParams(java.lang.String method, java.util.Map<java.lang.String,java.lang.Object> params)
Create notification object for the method and params.Methods in org.ovirt.vdsm.jsonrpc.client with parameters of type JsonRpcEvent Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>
EventDecomposer. decompose(JsonRpcEvent event)
Decomposes an event to a map. -
Uses of JsonRpcEvent in org.ovirt.vdsm.jsonrpc.client.events
Methods in org.ovirt.vdsm.jsonrpc.client.events that return JsonRpcEvent Modifier and Type Method Description JsonRpcEvent
SubscriptionHolder. canProcessMore()
Methods in org.ovirt.vdsm.jsonrpc.client.events with parameters of type JsonRpcEvent Modifier and Type Method Description int
EventPublisher. countEvents(JsonRpcEvent event)
java.util.Set<SubscriptionHolder>
SubscriptionMatcher. match(JsonRpcEvent event)
Matches current subscriptions to an event and returns aSet
containing all subscriptions that match for this event processing.void
EventPublisher. process(JsonRpcEvent event)
This method is used by @linkResponseWorker
to submit an @linkJsonRpcEvent
for processing.void
SubscriptionHolder. putEvent(JsonRpcEvent event)
Queues not processed event for later processing.
-