ChatServer.java 694 Bytes
Newer Older
Michele Fiori's avatar
Michele Fiori committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
package chat;

import io.grpc.Server;
import io.grpc.ServerBuilder;

import java.io.IOException;

public class ChatServer {

    final static int PORT = 1337;

    public static void main(String[] args) {
        try {

            System.out.println("[BOOT] Launching chat service on port "+PORT);

            Server server = ServerBuilder.forPort(PORT).addService(new ChatServiceImpl()).build();

            server.start();

            System.out.println("[BOOT] Server started!");

            server.awaitTermination();

        } catch (IOException e) {

            e.printStackTrace();

        } catch (InterruptedException e) {

            e.printStackTrace();

        }
    }

}