class Thrift::Middleware::NopMiddleware
Public Instance Methods
handle_binary(_mth, args = {}, &block)
click to toggle source
# File lib/thrift/middleware.rb 4 def handle_binary(_mth, args = {}, &block) 5 block.call(args) 6 end
handle_unary(_mth, args = {}, &block)
click to toggle source
# File lib/thrift/middleware.rb 8 def handle_unary(_mth, args = {}, &block) 9 block.call(args) 10 end