1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2025-06-29 20:06:25 +00:00

First commit: Just a collection of library sources from Github. Compiles, but doesn't work.

This commit is contained in:
2016-06-29 10:59:33 +02:00
commit 53d2b1674f
371 changed files with 13715 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package com.droidkit.actors.messages;
/**
* DeadLetter sent whet message was not processed by target actor
*/
public class DeadLetter {
private Object message;
public DeadLetter(Object message) {
this.message = message;
}
public Object getMessage() {
return message;
}
@Override
public String toString() {
return "DeadLetter(" + message + ")";
}
}