class XRBP::WebSocket::Parallel

MultiConnection strategy where requests are sent to all connections in parallel.

Public Instance Methods

next_connection(prev=nil) click to toggle source
# File lib/xrbp/websocket/multi/parallel.rb, line 20
def next_connection(prev=nil)
  return nil unless prev.nil?
  All.new connections
end