001    package org.otfeed.protocol.connector;
002    
003    import java.io.IOException;
004    
005    /**
006     * Low level synchronous client socket connection interface.
007     */
008    public interface IStreamerFactory {
009            /**
010             * Creates a connection (synchronously).
011             */
012            public IStreamer connect(String host, int port) throws IOException;
013    }