/// <summary>
 /// Issues a fetch request for a topic or selection of topics.
 /// </summary>
 /// <param name="topicSelector">A <see cref="TopicSelector"/> expression.</param>
 /// <param name="fetchContext">The context string to be returned with the fetch response(s).</param>
 /// <param name="stream">The callback for fetch responses.</param>
 public void Fetch( string topicSelector, string fetchContext, IFetchContextStream<string> stream )
 {
     topics.Fetch( topicSelector, fetchContext, stream );
 }
Example #2
0
 /// <summary>
 /// Issues a fetch request for a topic or selection of topics.
 /// </summary>
 /// <param name="topicSelector">A <see cref="TopicSelector"/> expression.</param>
 /// <param name="fetchContext">The context string to be returned with the fetch response(s).</param>
 /// <param name="stream">The callback for fetch responses.</param>
 public void Fetch(string topicSelector, string fetchContext, IFetchContextStream <string> stream)
 {
     topics.Fetch(topicSelector, fetchContext, stream);
 }