Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BlockInfo.cs
1
namespace
Waher.Persistence.Files.Storage
2
{
3
internal
class
BlockInfo
4
{
5
public
BlockHeader Header;
6
public
byte
[] Block;
7
public
uint BlockIndex;
8
public
int
InternalPosition;
9
public
bool
LastObject;
10
public
bool
Match;
11
12
public
BlockInfo(BlockHeader Header,
byte
[] Block, uint BlockIndex,
int
InternalPosition,
bool
LastObject,
bool
Match)
13
{
14
this.Header = Header;
15
this.Block = Block;
16
this.BlockIndex = BlockIndex;
17
this.InternalPosition = InternalPosition;
18
this.LastObject = LastObject;
19
this.Match = Match;
20
}
21
}
22
}
Waher.Persistence.Files.Storage
Definition:
BlockHeader.cs:4
IoTGateway
Persistence
Waher.Persistence.Files
Storage
BlockInfo.cs
Generated by
1.9.5