Class: EventMachine::EvmaUNIXClient
Instance Attribute Summary
Attributes inherited from Selectable
#io, #is_server, #uuid
Class Method Summary
collapse
Instance Method Summary
collapse
#eventable_read, #get_outbound_data_size, #get_peername, #get_sockname, #heartbeat, #send_data
Methods inherited from Selectable
#close_scheduled?, #get_peername, #get_sockname, #heartbeat, #schedule_close, #set_inactivity_timeout
Constructor Details
Returns a new instance of EvmaUNIXClient.
1007
1008
1009
1010
|
# File 'lib/em/pure_ruby.rb', line 1007
def initialize io
super
@pending = true
end
|
Class Method Details
.connect(chain) ⇒ Object
995
996
997
998
999
1000
1001
1002
1003
1004
|
# File 'lib/em/pure_ruby.rb', line 995
def self.connect chain
sd = Socket.new( Socket::AF_LOCAL, Socket::SOCK_STREAM, 0 )
begin
sd.connect_nonblock( Socket.pack_sockaddr_un( chain ))
rescue Errno::EINPROGRESS
end
EvmaUNIXClient.new sd
end
|
Instance Method Details
#eventable_write ⇒ Object
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
|
# File 'lib/em/pure_ruby.rb', line 1021
def eventable_write
if @pending
@pending = false
if 0 == io.getsockopt(Socket::SOL_SOCKET, Socket::SO_ERROR).unpack("i").first
EventMachine::event_callback uuid, ConnectionCompleted, ""
end
else
super
end
end
|
#select_for_reading? ⇒ Boolean
1017
1018
1019
|
# File 'lib/em/pure_ruby.rb', line 1017
def select_for_reading?
@pending ? false : super
end
|
#select_for_writing? ⇒ Boolean
1013
1014
1015
|
# File 'lib/em/pure_ruby.rb', line 1013
def select_for_writing?
@pending ? true : super
end
|