- Added `TListener` interface
This commit is contained in:
Tristan B. Velloza Kildaire 2023-04-06 09:04:09 +02:00
parent e4149fc30e
commit f39d65f73f
1 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
module tristanable.listener;
// TODO: Implement me
// TODO: Implement me
import tristanable.queue;
import tristanable.encoding;
public interface TListener
{
// TODO: See if this is all we need / what we want
public void onQueueReceive(Queue queue, TaggedMessage message);
}