Class: Async::IO::SocketEndpoint

Inherits:
Endpoint
  • Object
show all
Defined in:
lib/async/io/socket_endpoint.rb

Overview

This class doesn’t exert ownership over the specified socket, wraps a native ::IO.

Instance Attribute Summary collapse

Attributes inherited from Endpoint

#options

Instance Method Summary collapse

Methods inherited from Endpoint

#accept, #bound, #each, each, #hostname, #linger, #local_address, parse, #reuse_address, #reuse_port, socket, ssl, tcp, #timeout, try_convert, udp, unix, #with

Constructor Details

#initialize(socket, **options) ⇒ SocketEndpoint

Returns a new instance of SocketEndpoint.



29
30
31
32
33
34
# File 'lib/async/io/socket_endpoint.rb', line 29

def initialize(socket, **options)
	super(**options)
	
	# This socket should already be in the required state.
	@socket = Async::IO.try_convert(socket)
end

Instance Attribute Details

#socketObject (readonly)

Returns the value of attribute socket.



40
41
42
# File 'lib/async/io/socket_endpoint.rb', line 40

def socket
  @socket
end

Instance Method Details

#bind(&block) ⇒ Object



42
43
44
45
46
47
48
49
50
51
52
# File 'lib/async/io/socket_endpoint.rb', line 42

def bind(&block)
	if block_given?
		begin
			yield @socket
		ensure
			@socket.reactor = nil
		end
	else
		return @socket
	end
end

#connect(&block) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
# File 'lib/async/io/socket_endpoint.rb', line 54

def connect(&block)
	if block_given?
		begin
			yield @socket
		ensure
			@socket.reactor = nil
		end
	else
		return @socket
	end
end

#to_sObject



36
37
38
# File 'lib/async/io/socket_endpoint.rb', line 36

def to_s
	"\#<#{self.class} #{@socket.inspect}>"
end