@jameslo i haven't tested it but it might be the case that if you make sure to create [receive~]
after [send~]
that there will be no latency, (unless the [receive~]
is in part of the graph that leads to [send~]
). You might have to create the entire graph the [recieve~]
is part of after creating the entire graph the [send~]
is part of, I'm not sure..
edit: after testing I was not able to get that to work 
edit2: after further testing it seems like if I create the graph with the [receive~]
first it gets sorted last, but not if I delete the [receive~]
and recreate it afterwards
so there isn't always latency, it depends on how the dsp graph is sorted. If the [recieve~]
is sorted earlier in the graph before the [send~]
, as in the case of feedback, then there will be a block delay since [recieve~]
will process the shared buffer's samples before [send~]
has had a chance to write to the shared buffer. (so [recieve~]
will only get the samples written in the current block by [send~]
in the next block, creating a block delay.)