Package RTL.SMQ

Interface IntfOnCreateAck


public interface IntfOnCreateAck
Callback interface for responses to 'create' messages sent to the broker.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    smqOnCreateAck(boolean accepted, String topic, long tid, String subtopic, long subtid)
    Called when the broker sends the CreateAck message to the client.
  • Method Details

    • smqOnCreateAck

      void smqOnCreateAck(boolean accepted, String topic, long tid, String subtopic, long subtid)
      Called when the broker sends the CreateAck message to the client.
      Parameters:
      accepted - set to 'true' if the broker accepted the request.
      topic - the topic requested.
      tid - the translated topic ID created by the broker.
      subtopic - the subtopic requested or null if no subtopic was requested.
      subtid - the translated subtopic ID created by the broker or zero if no subtopic was requested.