Sha256: 1d88fd0b8ceab1c348c3c6d6c1b625d53520da76077b0669583d993129327e0d

Contents?: true

Size: 1.29 KB

Versions: 22

Compression:

Stored size: 1.29 KB

Contents

# 
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
# 
#   http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

require 'thrift/protocol/protocol_decorator'

module Thrift
  class MultiplexedProtocol < BaseProtocol

    include ProtocolDecorator

    def initialize(protocol, service_name)
      super(protocol)
      @service_name = service_name
    end

    def write_message_begin(name, type, seqid)
      case type
      when MessageTypes::CALL, MessageTypes::ONEWAY
        @protocol.write_message_begin("#{@service_name}:#{name}", type, seqid)
      else
        @protocol.write_message_begin(name, type, seqid)
      end 
    end
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
upfluence-thrift-2.6.8 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-2.6.1 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-2.4.4 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-2.3.1 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-2.3.0 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-2.2.0 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-2.1.1 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.1.0 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.12 lib/thrift/protocol/multiplexed_protocol.rb
thrift-0.11.0.0 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.11 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.10 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.9 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.8 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.7 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.6 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.5 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.4 lib/thrift/protocol/multiplexed_protocol.rb
thrift-0.10.0.0 lib/thrift/protocol/multiplexed_protocol.rb
upfluence-thrift-1.0.3 lib/thrift/protocol/multiplexed_protocol.rb