Uses of Interface
com.tccc.kos.commons.core.broker.MessageBrokerCallback
Packages that use MessageBrokerCallback
Package
Description
Provides access to the message broker.
This package provides the core application framework for KOS, including application lifecycle management,
dynamic loading capabilities, and messaging infrastructure.
-
Uses of MessageBrokerCallback in com.tccc.kos.commons.core.broker
Methods in com.tccc.kos.commons.core.broker with parameters of type MessageBrokerCallbackModifier and TypeMethodDescriptionvoid
MessageBroker.subscribe
(Object session, String topic, MessageBrokerCallback callback) Subscribes to the specified topic.void
MessageBroker.subscribe
(Object session, String topic, Class<?> bodyClass, MessageBrokerCallback callback) Subscribes to the specified topic. -
Uses of MessageBrokerCallback in com.tccc.kos.core.service.app
Methods in com.tccc.kos.core.service.app with parameters of type MessageBrokerCallbackModifier and TypeMethodDescriptionvoid
AppMessageBroker.subscribe
(Object session, String topic, MessageBrokerCallback callback) void
AppMessageBroker.subscribe
(Object session, String topic, Class<?> bodyClass, MessageBrokerCallback callback) void
AppMessageBroker.subscribe
(String topic, MessageBrokerCallback callback) Subscribes to the specified topic.void
AppMessageBroker.subscribe
(String topic, Class<?> bodyClass, MessageBrokerCallback callback) Subscribes to the specified topic.