class Thrift::MongrelHTTPServer
Public Class Methods
new(processor, opts={})
click to toggle source
# File lib/thrift/server/mongrel_http_server.rb, line 46 def initialize(processor, opts={}) Kernel.warn "[DEPRECATION WARNING] `Thrift::MongrelHTTPServer` is deprecated. Please use `Thrift::ThinHTTPServer` instead." port = opts[:port] || 80 ip = opts[:ip] || "0.0.0.0" path = opts[:path] || "" protocol_factory = opts[:protocol_factory] || BinaryProtocolFactory.new @server = Mongrel::HttpServer.new ip, port @server.register "/#{path}", Handler.new(processor, protocol_factory) end
Public Instance Methods
serve()
click to toggle source
# File lib/thrift/server/mongrel_http_server.rb, line 56 def serve @server.run.join end