All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.kurento.jsonrpc.internal.client.ClientSession Maven / Gradle / Ivy
/*
* (C) Copyright 2013 Kurento (http://kurento.org/)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.kurento.jsonrpc.internal.client;
import java.io.IOException;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import org.kurento.jsonrpc.JsonRpcException;
import org.kurento.jsonrpc.client.Continuation;
import org.kurento.jsonrpc.client.JsonRpcClient;
import org.kurento.jsonrpc.internal.JsonRpcRequestSender;
import org.kurento.jsonrpc.message.Request;
import org.kurento.jsonrpc.message.Response;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
public class ClientSession extends AbstractSession {
private JsonRpcRequestSender requestSender;
private volatile ConcurrentMap attributes;
public ClientSession(String sessionId, Object registerInfo,
JsonRpcRequestSender jsonRpcRequestSender) {
super(sessionId, registerInfo);
this.requestSender = jsonRpcRequestSender;
}
public ClientSession(String sessionId, Object registerInfo) {
super(sessionId, registerInfo);
}
public void setRequestSender(JsonRpcRequestSender requestSender) {
this.requestSender = requestSender;
}
@Override
public void close() throws IOException {
if (requestSender instanceof JsonRpcClient) {
((JsonRpcClient) requestSender).close();
}
}
@Override
public R sendRequest(String method, Class resultClass) throws IOException {
return requestSender.sendRequest(method, resultClass);
}
@Override
public R sendRequest(String method, Object params, Class resultClass) throws IOException {
return requestSender.sendRequest(method, params, resultClass);
}
@Override
public JsonElement sendRequest(String method) throws IOException {
return requestSender.sendRequest(method);
}
@Override
public JsonElement sendRequest(String method, Object params) throws IOException {
return requestSender.sendRequest(method, params);
}
@Override
public void sendNotification(String method, Object params) throws IOException {
requestSender.sendNotification(method, params);
}
@Override
public void sendNotification(String method) throws IOException {
requestSender.sendNotification(method);
}
@Override
public void sendRequest(String method, JsonObject params,
Continuation continuation) {
requestSender.sendRequest(method, params, continuation);
}
@Override
public void sendNotification(String method, Object params, Continuation continuation)
throws IOException {
requestSender.sendNotification(method, params, continuation);
}
@Override
public Response sendRequest(Request request) throws IOException {
return requestSender.sendRequest(request);
}
@Override
public void sendRequest(Request request,
Continuation> continuation) throws IOException {
requestSender.sendRequest(request, continuation);
}
@Override
public void sendRequestHonorId(Request request,
Continuation> continuation) throws IOException {
requestSender.sendRequestHonorId(request, continuation);
}
@Override
public Response sendRequestHonorId(Request request) throws IOException {
return requestSender.sendRequestHonorId(request);
}
@Override
public void setReconnectionTimeout(long millis) {
throw new JsonRpcException("Reconnection timeout can't be configured in the client");
}
@Override
public Map getAttributes() {
if (attributes == null) {
synchronized (this) {
if (attributes == null) {
attributes = new ConcurrentHashMap<>();
}
}
}
return attributes;
}
}