Class AmqpClientInterceptor

    • Constructor Detail

      • AmqpClientInterceptor

        public AmqpClientInterceptor()
        Deprecated.
    • Method Detail

      • getAmqpTemplate

        public AmqpTemplate getAmqpTemplate()
        Deprecated.
      • setAmqpTemplate

        public void setAmqpTemplate​(AmqpTemplate amqpTemplate)
        Deprecated.
        The AMQP template to be used for sending messages and receiving results. This class is using "Request/Reply" for sending messages as described in the Spring-AMQP documentation.
        Parameters:
        amqpTemplate - The amqp template.
      • getRoutingKey

        public String getRoutingKey()
        Deprecated.
      • setRoutingKey

        public void setRoutingKey​(String routingKey)
        Deprecated.
        The routing key to send calls to the service with. Use this to route the messages to a specific queue on the broker. If not set, the AmqpTemplate's default routing key will be used.

        This property is useful if you want to use the same AmqpTemplate to talk to multiple services.

        Parameters:
        routingKey - The routing key.
      • setRemoteInvocationFactory

        public void setRemoteInvocationFactory​(RemoteInvocationFactory remoteInvocationFactory)
        Deprecated.
        Set the RemoteInvocationFactory to use for this accessor. Default is a DefaultRemoteInvocationFactory.

        A custom invocation factory can add further context information to the invocation, for example user credentials.

        Parameters:
        remoteInvocationFactory - The remote invocation factory.