Emile Cormier

Results 281 comments of Emile Cormier

Should the `mode` option be propagated to the `INTERRUPT` message? The spec does not say. Is there a need for the callee to know under which `mode` an `INTERRUPT` is...

One thing to consider regarding the default cancel mode is that `skip` does not require the callee to support the call cancelling advanced feature. Perhaps the default mode should be...

@darkl , a similar feature had already been proposed in [Subscriber Meta Events](https://github.com/tavendo/WAMP/blob/master/spec/advanced/subscription-meta-api.md#subscriber-meta-events). It proposed to use an "metatopics" option in SUBSCRIBE messages. In my PR #179 , I had...

If one wanted behavior similar to `wamp.subscription.on_subscribe_to.`, they could use `wamp.subscription.lookup` (which returns a subscription id), and then subscribe to `wamp.subscription.on_subscribe_to.`. However, if nobody subscribed to `` yet, I don't...

> We have to be very careful not introduce CB implementation artefacts into the spec. You should be on the lookout for that when reviewing my meta API PR. You...

I was among those expecting `*` to be the wildcard token when I first read the spec. Seems more intuitive that way.

> I once thought that it would make sense to have timeouts originate from a caller, a dealer and a callee. I now think it's the dealer (and only that)...

What does this have to do with the specification of the WAMP protocol? Support requests for the nexus implementation should be sent to the appropriate channel under the nexus project.

Yes, the Google group is more appropriate for this question, unless the question raises an issue about information missing in the WAMP spec. I'll let the WAMP founders decide if...

I never liked the strict URI ban on uppercase letters. We are using `camelCase` on both the front end Javascipt and backend C++ for function names. It's awkward having to...