Package com.evernote.thrift.transport

Examples of com.evernote.thrift.transport.THttpClient


   * @return
   * @throws TTransportException
   */
  <T> T createStoreClient(Class<T> clientClass, String url, String token)
      throws TTransportException {
    THttpClient transport = new THttpClient(url);

    transport.setCustomHeader(USER_AGENT_KEY, generateUserAgent());
    if (customHeaders != null) {
      for (Map.Entry<String, String> header : customHeaders.entrySet()) {
        transport.setCustomHeader(header.getKey(), header.getValue());
      }
    }

    TProtocol protocol = new TBinaryProtocol(transport);
    try {
View Full Code Here

TOP

Related Classes of com.evernote.thrift.transport.THttpClient

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.