-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathIPublishedMessage.cs
51 lines (47 loc) · 1.47 KB
/
IPublishedMessage.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System.Collections.Generic;
using Ipfs.CoreApi;
namespace Ipfs
{
/// <summary>
/// A published message.
/// </summary>
/// <remarks>
/// The <see cref="IPubSubApi"/> is used to publish and subsribe to a message.
/// <para/>
/// Interface layout sourced from Kubo API: <see href="https://github.com/ipfs/kubo/blob/f5b855550ca73acf5dd3a2001e2a7192cab7c249/core/commands/pubsub.go#L111"/>.
/// </remarks>
public interface IPublishedMessage
{
/// <summary>
/// Contents as a byte array.
/// </summary>
/// <remarks>
/// It is never <b>null</b>.
/// </remarks>
/// <value>
/// The contents as a sequence of bytes.
/// </value>
byte[] DataBytes { get; }
/// <summary>
/// The sender of the message.
/// </summary>
/// <value>
/// The peer that sent the message.
/// </value>
Peer Sender { get; }
/// <summary>
/// The topics of the message.
/// </summary>
/// <value>
/// All topics related to this message.
/// </value>
IEnumerable<string> Topics { get; }
/// <summary>
/// The sequence number of the message.
/// </summary>
/// <value>
/// A sender unique id for the message.
/// </value>
byte[] SequenceNumber { get; }
}
}