All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uber.tchannel.hyperbahn.HyperbahnExample Maven / Gradle / Ivy

/*
 * Copyright (c) 2015 Uber Technologies, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package com.uber.tchannel.hyperbahn;

import com.uber.tchannel.api.TChannel;
import com.uber.tchannel.api.TFuture;
import com.uber.tchannel.api.handlers.TFutureCallback;
import com.uber.tchannel.hyperbahn.api.HyperbahnClient;
import com.uber.tchannel.hyperbahn.messages.AdvertiseResponse;
import com.uber.tchannel.messages.JsonResponse;
import com.uber.tchannel.ping.PingRequestHandler;

import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.TimeUnit;

// Instructions:
//      1. run Hyperbahn: node server.js --port 21300 2>&1 | jq .
//      2. run HyperbahnExample.java
//      3. tcurl -p 127.0.0.1:21300 javaServer ping -j -2 "{}" -3 '{"request":"hello"}' | jq .
//      4. run health check: tcurl -p 127.0.0.1:8888 javaServer --health

public final class HyperbahnExample {

    private HyperbahnExample() {}

    public static void main(String[] args) throws Exception {
        TChannel tchannel = new TChannel.Builder("javaServer")
                .setServerHost(InetAddress.getByName(null))
                .setServerPort(8888)
                .build();

        tchannel.listen();

        List routers = Arrays.asList(
            new InetSocketAddress("127.0.0.1", 21300)
        );
        HyperbahnClient hyperbahn = new HyperbahnClient.Builder(tchannel.getServiceName(), tchannel)
                .setRouters(routers)
                .build();

        // register the service handler
        hyperbahn.makeClientChannel("javaServer")
            .registerHealthHandler()
            .register("ping", new PingRequestHandler());

        final TFuture> future = hyperbahn.advertise();
        future.addCallback(new TFutureCallback>() {
            @Override
            public void onResponse(JsonResponse response) {
                if (!response.isError()) {
                    System.out.println("Got response. All set: " + response.getBody(AdvertiseResponse.class));
                } else {
                    System.out.println("Error happened: " + response.getError().getMessage());
                }
            }
        });

        Thread.sleep(TimeUnit.MILLISECONDS.convert(600, TimeUnit.SECONDS));

        tchannel.shutdown();
        hyperbahn.shutdown();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy