Package com.higherfrequencytrading.chronicle.tools

Examples of com.higherfrequencytrading.chronicle.tools.WaitingThread


    public static void main(String... args) throws IOException {
        String outboundPath = args[0];
        String inboundPath = args[1];
        String hostname = args[2];
        int port = Integer.parseInt(args[3]);
        WaitingThread thread = new WaitingThread(1, "SocketGateway " + hostname + ":" + port, false);
        new SocketGateway(new InetSocketAddress(hostname, port),
                new IndexedChronicle(outboundPath), new IndexedChronicle(inboundPath), thread);
    }
View Full Code Here

TOP

Related Classes of com.higherfrequencytrading.chronicle.tools.WaitingThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.