class Protobuf::Rpc::Middleware::Runner

Public Class Methods

new(stack) click to toggle source

Override the default middleware runner so we can ensure that the service dispatcher is the last thing called in the stack.

Calls superclass method
# File lib/protobuf/rpc/middleware/runner.rb, line 10
def initialize(stack)
  stack << Protobuf::Rpc::ServiceDispatcher

  super(stack)
end