![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/lib/gems/2.5.0/gems/eventmachine-le-1.1.7/lib/em/ |
Upload File : |
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