| ProviderSessionDeleteTopic Method |
Removes one reference from the specified 'topic'.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.26.3.64-experimental+d7d4d9bba07b94fd0a19ff78810b8add95447f66
Syntaxpublic void DeleteTopic(
Topic topic
)
Public Sub DeleteTopic (
topic As Topic
)
public:
virtual void DeleteTopic(
Topic^ topic
) sealed
abstract DeleteTopic :
topic : Topic -> unit
override DeleteTopic :
topic : Topic -> unit Parameters
- topic
- Type: Bloomberglp.BlpapiTopic
Implements
IProviderSessionDeleteTopic(Topic)
Remarks
If this function
has been called the same number of times that 'topic' was created
by
ProviderSession.CreateTopics, then 'topic' is deleted: a
'TopicDeleted' message is delivered, preceded by 'TopicDeactivated'
if 'topic' was subscribed. (See "Topic Life Cycle", above, for
additional details.) The behavior of this function is undefined if
'topic' has already been deleted the same number of times that it
has been created. Further, the behavior is undefined if a provider
attempts to publish a message on a deleted topic.
See Also