Interface TopicService

All Known Implementing Classes:
NoopTopicService

public interface TopicService
Entry point for manging Topic instances in the system. Topics are a means for the system, as a whole, to publish asynchronous messages. Created by patricktwohig on 7/20/17.
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> Topic<T>
    getTopicForTypeNamed(Class<T> tClass, String named)
    Gets a Topic for the supplied message type.
  • Method Details

    • getTopicForTypeNamed

      <T> Topic<T> getTopicForTypeNamed(Class<T> tClass, String named)
      Gets a Topic for the supplied message type.
      Type Parameters:
      T - the message type
      Parameters:
      tClass - the message type Class<T> instance
      named - the name of the topic
      Returns:
      a Topic