Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
QueuedItem.cs
1
using
System
;
2
using
Waher.Persistence.Attributes
;
3
4
namespace
Waher.Persistence.Queues
5
{
9
[CollectionName(QueuedItemCollectionName)]
10
[TypeName(
TypeNameSerialization
.None)]
11
[Index(
"QueueName"
,
"CreatedUtc"
)]
12
public
class
QueuedItem
13
{
17
public
const
string
QueuedItemCollectionName
=
"QueuedItems"
;
18
22
public
QueuedItem
()
23
{
24
}
25
29
[
ObjectId
]
30
public
string
ObjectId
{
get
;
set
; }
31
35
public
string
QueueName
{
get
;
set
; }
36
40
public
DateTime
CreatedUtc
{
get
;
set
; }
41
45
public
object
Content
{
get
;
set
; }
46
}
47
}
Waher.Persistence.Queues.QueuedItem
Represents one item in a queue.
Definition:
QueuedItem.cs:13
Waher.Persistence.Queues.QueuedItem.QueueName
string QueueName
Name of queue.
Definition:
QueuedItem.cs:35
Waher.Persistence.Queues.QueuedItem.ObjectId
string ObjectId
Object ID
Definition:
QueuedItem.cs:30
Waher.Persistence.Queues.QueuedItem.Content
object Content
Object content of item.
Definition:
QueuedItem.cs:45
Waher.Persistence.Queues.QueuedItem.CreatedUtc
DateTime CreatedUtc
Timestamp of creation, in UTC.
Definition:
QueuedItem.cs:40
Waher.Persistence.Queues.QueuedItem.QueuedItem
QueuedItem()
Represents one item in a queue.
Definition:
QueuedItem.cs:22
Waher.Persistence.Queues.QueuedItem.QueuedItemCollectionName
const string QueuedItemCollectionName
Collection name of queued items: QueuedItems
Definition:
QueuedItem.cs:17
System
Definition:
Adapters.g.cs:58
Waher.Persistence.Attributes
Definition:
ArchivingTimeAttribute.cs:4
Waher.Persistence.Attributes.TypeNameSerialization
TypeNameSerialization
How the type name should be serialized.
Definition:
TypeNameAttribute.cs:9
Waher.Persistence.Queues
Definition:
FileQueueCollection.cs:11
IoTGateway
Persistence
Waher.Persistence
Queues
QueuedItem.cs
Generated by
1.9.5