Fork me on GitHub
#core-async
<
2016-05-04
>
mss17:05:12

anybody have experience using core.async with prismatic’s schema?

mss17:05:25

looking for the proper way to refer to a channel as an argument to a function

mss17:05:44

settled on (schema/protocol Channel) for now, but wondering if there’s anything more idiomatic that people are doing

angusiguess17:05:03

@mss That's what we do as well.

angusiguess17:05:21

by we I mean myself and my place of work.

mss17:05:34

cool good to know. really appreciate the feedback

pre23:05:35

I’m currently using a Schema for each message that consists of a Type, Header, Payload, and Metadata.

pre23:05:28

This I way I can write a central supervisor (read recent blogs by @angusiguess) that can observe and act upon the messages received.

pre23:05:47

If anyone is working on “shaping” the async message channels, happy to learn.