Package krati.store.avro.client

Examples of krati.store.avro.client.TransceiverFactoryHttp


*/
public class StoreBusClientHttp<K, V> extends StoreBusClientImpl<K, V> {
    protected URL _serverURL;
   
    public StoreBusClientHttp(URL serverURL, String source, Serializer<K> keySerializer, Serializer<V> valueSerializer) {
        super(source, keySerializer, valueSerializer, new TransceiverFactoryHttp(serverURL));
        this._serverURL = serverURL;
    }
View Full Code Here

TOP

Related Classes of krati.store.avro.client.TransceiverFactoryHttp

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.