So I’m new to Julia - and I’ve been experimenting with the Distributed package - I wrote an example program to illustrate some of the concepts. Using remote channels, I can create primitive remote channel type, but how can I create a user-defined Remote Channel Type? For example, if I define a simple struct:
struct Ctrl
n::Int64
q::Bool
end
How can I make a remote Channel of type Channel{Ctrl}. When I attempt to do so, the struct reference isn’t defined in the worker procs.