org.jupiter.example.cluster.failsafe.FailSafeJupiterClient Maven / Gradle / Ivy
/*
* Copyright (c) 2015 The Jupiter Project
*
* 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.jupiter.example.cluster.failsafe;
import org.jupiter.example.cluster.service.ClusterService;
import org.jupiter.rpc.DefaultClient;
import org.jupiter.rpc.InvokeType;
import org.jupiter.rpc.JClient;
import org.jupiter.rpc.JListener;
import org.jupiter.rpc.consumer.ProxyFactory;
import org.jupiter.rpc.consumer.cluster.ClusterInvoker;
import org.jupiter.rpc.consumer.future.InvokeFuture;
import org.jupiter.rpc.consumer.future.InvokeFutureContext;
import org.jupiter.transport.JConnector;
import org.jupiter.transport.exception.ConnectFailedException;
import org.jupiter.transport.netty.JNettyTcpConnector;
/**
* jupiter
* org.jupiter.example.cluster.failover
*
* @author jiachun.fjc
*/
public class FailSafeJupiterClient {
public static void main(String[] args) {
JClient client = new DefaultClient().withConnector(new JNettyTcpConnector());
// 连接RegistryServer
client.connectToRegistryServer("127.0.0.1:20001");
// 自动管理可用连接
JConnector.ConnectionWatcher watcher = client.watchConnections(ClusterService.class, "1.0.0");
// 等待连接可用
if (!watcher.waitForAvailable(3000)) {
throw new ConnectFailedException();
}
// 同步调用
System.err.println("同步调用fail-safe测试...........");
ClusterService syncService = ProxyFactory.factory(ClusterService.class)
.version("1.0.0")
.client(client)
.invokeType(InvokeType.SYNC)
.clusterStrategy(ClusterInvoker.Strategy.FAIL_SAFE)
.newProxyInstance();
try {
System.err.println("Sync result=" + syncService.helloInt());
} catch (Exception e) {
e.printStackTrace();
}
// 异步调用
System.err.println("异步调用fail-safe测试...........");
ClusterService asyncService = ProxyFactory.factory(ClusterService.class)
.version("1.0.0")
.client(client)
.invokeType(InvokeType.ASYNC)
.clusterStrategy(ClusterInvoker.Strategy.FAIL_SAFE)
.newProxyInstance();
try {
asyncService.helloInt();
// 两种方式都可以
InvokeFuture future_int = InvokeFutureContext.future(int.class);
// InvokeFuture future_int = InvokeFutureContext.future(Integer.TYPE);
future_int.addListener(new JListener() {
@Override
public void complete(Integer result) {
System.err.println("Async int result=" + result);
}
@Override
public void failure(Throwable cause) {
cause.printStackTrace();
}
});
asyncService.helloVoid();
// 两种方式都可以
// InvokeFuture future_void = InvokeFutureContext.future(void.class);
InvokeFuture future_void = InvokeFutureContext.future(Void.TYPE);
future_void.addListener(new JListener() {
@Override
public void complete(Void result) {
System.err.println("Async void result=" + result);
}
@Override
public void failure(Throwable cause) {
cause.printStackTrace();
}
});
} catch (Exception e) {
e.printStackTrace();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy