zeek/testing/btest/Baseline/broker.remote_event_any
Jon Siwek d873acc9e3 Support unserializing broker data into type 'any'
The receiver side will wrap the data as a Broker::Data value, which
can then be type-checked/cast via 'is' or 'as' operators to a specific
Bro type.  For example:

Sender:

    Broker::publish("topic", my_event, "hello")

Receiver:

    event my_event(arg: any)
        {
        if ( arg is string )
            print arg as string;
        }
2018-05-31 10:39:40 -05:00
..
recv.recv.out Support unserializing broker data into type 'any' 2018-05-31 10:39:40 -05:00
send.send.out Support unserializing broker data into type 'any' 2018-05-31 10:39:40 -05:00