com.github.sstone.amqp.proxy
Thrown when an error occurred on the "server" side and was sent back to the client If you have a server Actor and create an AMQP proxy for it, then:
proxy ? message
will behave as if you had written;
server ? message
and server had sent back an akka.actor.Status.ServerFailure(new AmqpProxyException(message)))
akka.actor.Status.ServerFailure(new AmqpProxyException(message)))
error message
Thrown when an error occurred on the "server" side and was sent back to the client If you have a server Actor and create an AMQP proxy for it, then:
will behave as if you had written;
and server had sent back an
akka.actor.Status.ServerFailure(new AmqpProxyException(message)))