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
The current API to define a topic requires a user to specify both the Topic type, the topic registration type and the topic name:
var topic = await vortex.CreateTopic (topicName,
topicType,
topicRegistrationType,
qos);
For consistency with other APIs and simplicity we should allow the "topicType" and more importantly the topic registration type to be just an option and deduce it automatically from the type parameter (ChatMessage below).
var topic = await vortex.CreateTopic (topicName, qos);
We could potentially also assume that TopicName == TopicTypeName when a topic is created as follows:
var topic = await vortex.CreateTopic ();
or like this:
var topic = await vortex.CreateTopic (qos);
The text was updated successfully, but these errors were encountered:
The current API to define a topic requires a user to specify both the Topic type, the topic registration type and the topic name:
var topic = await vortex.CreateTopic (topicName,
topicType,
topicRegistrationType,
qos);
For consistency with other APIs and simplicity we should allow the "topicType" and more importantly the topic registration type to be just an option and deduce it automatically from the type parameter (ChatMessage below).
var topic = await vortex.CreateTopic (topicName, qos);
We could potentially also assume that TopicName == TopicTypeName when a topic is created as follows:
var topic = await vortex.CreateTopic ();
or like this:
var topic = await vortex.CreateTopic (qos);
The text was updated successfully, but these errors were encountered: