You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that we cannot destroy a publisher created from the node, because the destroy function is private to the inner Publisher_ type. The only way to remove a publisher is to close the node.
Is it possible to add Drop to Publisher<T> so we can drop it when necessary?
The text was updated successfully, but these errors were encountered:
You are right this functionality is missing. If I remember correctly it is like this is because the node should be the one destroying the publishers so that they can be shared between threads easily. But it seems that there is no function on the node for destroying a publisher either which there ought to be.
Hi,
It seems that we cannot destroy a publisher created from the node, because the
destroy
function is private to the innerPublisher_
type. The only way to remove a publisher is to close the node.Is it possible to add
Drop
toPublisher<T>
so we can drop it when necessary?The text was updated successfully, but these errors were encountered: