Commons/src/main/java/eu/univento/commons/event/MessageEvent.java

16 lines
351 B
Java
Raw Normal View History

2017-04-14 11:02:35 +02:00
/*
* Copyright (c) 2017 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.commons.event;
/**
* @author joethei
* @version 0.1
*/
public interface MessageEvent {
void onMessageReceived(String queue, String message);
void onMessageSend(String queue, String message);
}