require 'rubygems' require 'bud' class Unicast include Bud state do channel :chn, [:id] => [:@addr, :val] table :sbuf, chn.schema table :rbuf, chn.schema end bloom do chn <~ sbuf rbuf <= chn end end