Uses of Class
com.intellij.util.messages.Topic
-
Packages that use Topic Package Description com.intellij.util.messages com.intellij.util.messages.impl -
-
Uses of Topic in com.intellij.util.messages
Methods in com.intellij.util.messages that return Topic Modifier and Type Method Description static <L> Topic<L>
Topic. create(String displayName, Class<L> listenerClass)
static <L> Topic<L>
Topic. create(String displayName, Class<L> listenerClass, Topic.BroadcastDirection direction)
Methods in com.intellij.util.messages with parameters of type Topic Modifier and Type Method Description <L> L
MessageBus. asyncPublisher(Topic<L> topic)
<L> void
MessageBusConnection. subscribe(Topic<L> topic)
<L> void
MessageBusConnection. subscribe(Topic<L> topic, L handler)
<L> L
MessageBus. syncPublisher(Topic<L> topic)
-
Uses of Topic in com.intellij.util.messages.impl
Methods in com.intellij.util.messages.impl that return Topic Modifier and Type Method Description Topic
Message. getTopic()
Methods in com.intellij.util.messages.impl with parameters of type Topic Modifier and Type Method Description <L> L
MessageBusImpl. asyncPublisher(Topic<L> topic)
void
MessageBusImpl. notifyOnSubscription(MessageBusConnectionImpl connection, Topic topic)
<L> void
MessageBusConnectionImpl. subscribe(Topic<L> topic)
<L> void
MessageBusConnectionImpl. subscribe(Topic<L> topic, L handler)
<L> L
MessageBusImpl. syncPublisher(Topic<L> topic)
Constructors in com.intellij.util.messages.impl with parameters of type Topic Constructor Description Message(Topic topic, Method listenerMethod, Object[] args)
-