Skip to content

Commit

Permalink
#328 Prepare interface
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoraka committed Jul 9, 2019
1 parent 8286f04 commit d873132
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package dvoraka.avservice.client.transport.test;

import dvoraka.avservice.common.data.Message;
import dvoraka.avservice.common.listener.MessageListener;

public interface SimpleBroker<M extends Message> {

void send(String queueName, M message);

void addMessageListener(MessageListener<M> listener, String queueName);
}

0 comments on commit d873132

Please sign in to comment.