Show when folder is executing operations

This commit is contained in:
M66B
2019-05-11 21:30:09 +02:00
parent c00eac14f4
commit a70a517c9f
10 changed files with 1826 additions and 6 deletions

View File

@@ -35,6 +35,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
public int messages;
public int content;
public int unseen;
public int executing;
public int childs;
@Override
@@ -48,6 +49,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
this.messages == other.messages &&
this.content == other.content &&
this.unseen == other.unseen &&
this.executing == other.executing &&
this.childs == other.childs);
} else
return false;