Elad Zelingher
Elad Zelingher
I know I'm pretty late here, but I would rather using a `BlockingCollection` than throwing away the messages in this case.
I've encountered this issue when writing a test client for #145. I think this is critical and should be handled somehow. (Even if by notifying the user that server has...
Created pull request #226.
@oberstet [it is implemented](http://wampsharp.net/release-notes/wampsharp-v1.2.6.41-beta-release-notes/#event-retention-support) in WampSharp as well.
:+1: Can this be added to the spec? It seems that [Thruway already supports this](https://github.com/voryx/Thruway/blob/b6d62af2aa2acd4389463766804c40d5ef6c3a86/src/Thruway/Call.php#L303), and I think it could be very useful for callees.
@gammazero, unfortunately the agreed names include the prefix, i.e. `publisher_authid`, `publisher_authrole`, `caller_authid`, `caller_authrole`. Please don't change this again, as this is already reflected in the implementations (see [here](https://github.com/Code-Sharp/WampSharp/blob/wampv2/src/net45/WampSharp/WAMP2/V2/Core/Contracts/Rpc/InvocationDetails.cs#L58), [here](https://github.com/Code-Sharp/WampSharp/blob/wampv2/src/net45/WampSharp/WAMP2/V2/Core/Contracts/PubSub/EventDetails.cs#L44) and...
Hi Tobias, I wrote a few years ago code that handles WAMP message parsing. You can find it [here](https://gist.github.com/darkl/7476a72da0d38c1044f46d56a3b6d68a). It should not be too complicated to integrate this with the...
I think subscription ids are better for this purpose, since the scenario I imagine is users subscribe to wamp.subscription.on_create/wamp.subscription.on_delete and then subscribe to wamp.subscription.on_subscribe_to./wamp.subscription.on_unsubscribe_to. based on the created subscription.
Yeah, but we need to notice that topic uri isn't 1-1 with subscription ids. (One can subscribe to a topic with match="prefix" and match="wildcard" and these will yield different subscription...
Maybe we should introduce a meta-topic that tells us when is a subscription corresponding to a given topic is created. Something like " wamp.subscription.on_create.com.myapp.topic1" so users can be aware when...