All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fridujo.rabbitmq.mock.exchange.MockExchange Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.fridujo.rabbitmq.mock.exchange;

import com.github.fridujo.rabbitmq.mock.Receiver;
import com.github.fridujo.rabbitmq.mock.ReceiverPointer;

import java.util.Map;

public interface MockExchange extends Receiver {
    
    String getType();

    void bind(ReceiverPointer mockQueue, String routingKey, Map arguments);

    void unbind(ReceiverPointer pointer, String routingKey);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy