- Added `getFrom()`, `getDestination()` and `getMessage()`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-22 21:29:39 +02:00
parent fe5f05d532
commit dff66decae
1 changed files with 15 additions and 0 deletions

View File

@ -32,6 +32,21 @@ public struct Message
{
this.destination = destination;
}
public string getBody()
{
return this.message;
}
public string getFrom()
{
return this.from;
}
public string getDestination()
{
return this.destination;
}
}
public enum QUEUE_DEFAULT_SIZE = 100;