Skip to content

Instantly share code, notes, and snippets.

@olimart
olimart / active_exchange.rb
Created September 5, 2024 12:06 — forked from bradgessler/active_exchange.rb
ActionExchange
module ActiveExchange
class Channel
def initialize(name:, server: ActiveExchange.server)
@server = server
@channel = name
@queue = Queue.new
@subscribe = false
end
def broadcast(message)