Sha256: 10a754d7b48bbb438db036d519a8b747570e216b6cc8dc6759af950a522f73f9

Contents?: true

Size: 1.5 KB

Versions: 103

Compression:

Stored size: 1.5 KB

Contents

module EventMachine
  # This module contains various protocol implementations, including:
  # - HttpClient and HttpClient2
  # - Stomp
  # - Memcache
  # - SmtpClient and SmtpServer
  # - SASLauth and SASLauthclient
  # - LineProtocol, LineAndTextProtocol and LineText2
  # - HeaderAndContentProtocol
  # - Postgres3
  # - ObjectProtocol
  #
  # The protocol implementations live in separate files in the protocols/ subdirectory,
  # but are auto-loaded when they are first referenced in your application.
  #
  # EventMachine::Protocols is also aliased to EM::P for easier usage.
  #
  module Protocols
    # TODO : various autotools are completely useless with the lack of naming
    # convention, we need to correct that!
    autoload :TcpConnectTester, 'em/protocols/tcptest'
    autoload :HttpClient, 'em/protocols/httpclient'
    autoload :HttpClient2, 'em/protocols/httpclient2'
    autoload :LineAndTextProtocol, 'em/protocols/line_and_text'
    autoload :HeaderAndContentProtocol, 'em/protocols/header_and_content'
    autoload :LineText2, 'em/protocols/linetext2'
    autoload :Stomp, 'em/protocols/stomp'
    autoload :SmtpClient, 'em/protocols/smtpclient'
    autoload :SmtpServer, 'em/protocols/smtpserver'
    autoload :SASLauth, 'em/protocols/saslauth'
    autoload :Memcache, 'em/protocols/memcache'
    autoload :Postgres3, 'em/protocols/postgres3'
    autoload :ObjectProtocol, 'em/protocols/object_protocol'
    autoload :Socks4, 'em/protocols/socks4'
    autoload :LineProtocol, 'em/protocols/line_protocol'
  end
end

Version data entries

103 entries across 100 versions & 9 rubygems

Version Path
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/3.1.0/gems/eventmachine-1.2.7/lib/em/protocols.rb
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/3.0.0/gems/eventmachine-1.2.7/lib/em/protocols.rb
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/em/protocols.rb
eventmachine-mkroman-1.3.0.dev.1 lib/em/protocols.rb
wj_eventmachine-1.3.2 lib/em/protocols.rb
wj_eventmachine-1.3.1 lib/em/protocols.rb
wj_eventmachine-1.3.0.dev.1 lib/em/protocols.rb
sensu-em-2.7.0-java lib/em/protocols.rb
eventmachine-1.2.7-java lib/em/protocols.rb
eventmachine-1.2.7-x64-mingw32 lib/em/protocols.rb
eventmachine-1.2.7-x86-mingw32 lib/em/protocols.rb
eventmachine-1.2.7 lib/em/protocols.rb
eventmachine-1.2.6-x64-mingw32 lib/em/protocols.rb
eventmachine-1.2.6-x86-mingw32 lib/em/protocols.rb
eventmachine-1.2.6-java lib/em/protocols.rb
eventmachine-1.2.6 lib/em/protocols.rb
eventmachine-1.2.5-x86-mingw32 lib/em/protocols.rb
eventmachine-1.2.5-x64-mingw32 lib/em/protocols.rb
eventmachine-1.2.5-java lib/em/protocols.rb
eventmachine-1.2.5 lib/em/protocols.rb