class Aws::Xray::IoSocket

Public Class Methods

new(io) click to toggle source
# File lib/aws/xray/sockets.rb, line 23
def initialize(io)
  @io = io
end

Public Instance Methods

close() click to toggle source
# File lib/aws/xray/sockets.rb, line 31
def close; end
send(body, *) click to toggle source
# File lib/aws/xray/sockets.rb, line 27
def send(body, *)
  @io.write(body)
end