Schnittstelle InternalQueryService

Alle Superschnittstellen:
QueryService

public interface InternalQueryService extends QueryService
Declares query-related methods not accessible to remote peers.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    void
    registerResponder(Class<? extends Query<?>> clazz, QueryResponder responder)
    Registers the given responder for handling queries of the given type.
    void
    unregisterResponder(Class<? extends Query<?>> clazz)
    Unregisters the responder for the given type.

    Von Schnittstelle geerbte Methoden org.opentcs.components.kernel.services.QueryService

    query
  • Methodendetails

    • registerResponder

      void registerResponder(@Nonnull Class<? extends Query<?>> clazz, @Nonnull QueryResponder responder)
      Registers the given responder for handling queries of the given type.
      Parameter:
      clazz - The query type.
      responder - The responder to handle the queries.
    • unregisterResponder

      void unregisterResponder(@Nonnull Class<? extends Query<?>> clazz)
      Unregisters the responder for the given type.
      Parameter:
      clazz - The query type.