aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/consensus/ConcludeMessage.java
blob: 7b439280bf0fbc28466a583d43b3803c0c5684c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.gnunet.consensus;

import org.gnunet.construct.FillWith;
import org.gnunet.construct.UInt16;
import org.gnunet.construct.UInt8;
import org.gnunet.construct.UnionCase;
import org.gnunet.util.GnunetMessage;

/**
 * Notify the client of a new element.
 *
 * Direction: service -> client
 *
 * @author Florian Dold
 */
@UnionCase(524)
public class ConcludeMessage implements GnunetMessage.Body {
    /* empty body */
}