Sha256: c59d44848c89557b2860ce076d0445dcd1f35002e77b5c2254b3e3289738ce8c

Contents?: true

Size: 565 Bytes

Versions: 20

Compression:

Stored size: 565 Bytes

Contents

module Thrift
  class BaseTransport
    def timeout=(timeout)
    end

    def timeout
      nil
    end
  end

  class BufferedTransport
    def timeout=(timeout)
      @transport.timeout = timeout
    end

    def timeout
      @transport.timeout
    end
  end

  class FramedTransport
    def timeout=(timeout)
      @transport.timeout = timeout
    end

    def timeout
      @transport.timeout
    end
  end
  
  module Client
    def timeout=(timeout)
      @iprot.trans.timeout = timeout
    end

    def timeout
      @iprot.trans.timeout
    end
  end
end

Version data entries

20 entries across 20 versions & 6 rubygems

Version Path
thrift_client-0.11.0 lib/thrift_client/thrift.rb
thrift_client-0.10.0 lib/thrift_client/thrift.rb
rt_thrift_client-0.11.0 lib/thrift_client/thrift.rb
RaymondChou-thrift_client-0.9.3 lib/thrift_client/thrift.rb
thrift_client-adamd-0.9.4 lib/thrift_client/thrift.rb
thrift_client-adamd-0.9.3 lib/thrift_client/thrift.rb
thrift_client-0.9.3 lib/thrift_client/thrift.rb
thrift_client-mavericks-0.8.4 lib/thrift_client/thrift.rb
thrift_client-0.9.2 lib/thrift_client/thrift.rb
thrift_client-0.9.1 lib/thrift_client/thrift.rb
thrift_client-0.8.4 lib/thrift_client/thrift.rb
thrift_client-0.9.0 lib/thrift_client/thrift.rb
thrift_client-0.8.3 lib/thrift_client/thrift.rb
thrift_client-0.8.2 lib/thrift_client/thrift.rb
thrift_client-0.8.1 lib/thrift_client/thrift.rb
thrift_client-0.8.0 lib/thrift_client/thrift.rb
fl-thrift_client-0.5.0 lib/thrift_client/thrift.rb
thrift_client-0.7.1 lib/thrift_client/thrift.rb
thrift_client-0.7.0 lib/thrift_client/thrift.rb
thrift_client-0.6.3 lib/thrift_client/thrift.rb