Sending files over the GenericHub #2308
Answered
by
LeStarch
lukeclements
asked this question in
Q&A
-
Hi, I have two deployments that use the GenericHub component and I was wondering how do I send flies over the GenericHub? |
Beta Was this translation helpful? Give feedback.
Answered by
LeStarch
Oct 23, 2023
Replies: 1 comment 1 reply
-
What happens on the host computer is up to the project:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lukeclements
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Svc::FileDownlink
has a buffer send port. This can be attached directly to the hub on one of its buffer input ports (don't forget to attach the return buffer port of the same index back to file downlink).What happens on the host computer is up to the project:
Svc::ComQueue
and the downlink stack. That would push all file downlink buffers to the ground immediately.Svc::FileUplink
and wire that to the hub.Svc::FileDownlink
andSvc::FileUplink
are designed to cross-wire, so you could "uplink" across the hub. This would write the files locally and then another instance ofSvc::FileDownlink
could send to the com stack.