colesico.framework.rpc.teleapi.RpcTRContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-rpc Show documentation
Show all versions of colesico-rpc Show documentation
Colesico framework Remote Procedure Call for Services
The newest version!
/*
* Copyright © 2014-2020 Vladlen V. Larionov and others as noted.
*
* 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 colesico.framework.rpc.teleapi;
import colesico.framework.teleapi.TRContext;
import java.lang.reflect.Type;
/**
* RPC tele-data reading context
*/
public final class RpcTRContext extends TRContext {
public static final String OF_METHOD = "of";
private R request;
private final ValueGetter valueGetter;
private RpcTRContext(Type valueType, ValueGetter valueGetter) {
super(valueType);
this.valueGetter = valueGetter;
}
public static RpcTRContext of(Type valueType, ValueGetter valueGetter) {
return new RpcTRContext<>(valueType, valueGetter);
}
public static RpcTRContext of(Type valueType) {
return new RpcTRContext<>(valueType, null);
}
public R getRequest() {
return request;
}
public void setRequest(R request) {
this.request = request;
}
public ValueGetter getValueGetter() {
return valueGetter;
}
@FunctionalInterface
public interface ValueGetter {
V get(R request);
}
}