Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OldestOrder.cs
1
using
System.Collections.Generic;
2
3
namespace
Waher.Persistence.FullTextSearch.Orders
4
{
8
public
class
OldestOrder
: IComparer<MatchInformation>
9
{
13
public
OldestOrder
()
14
{
15
}
16
20
public
int
Compare
(
MatchInformation
x,
MatchInformation
y)
21
{
22
return
x.
Timestamp
.CompareTo(y.
Timestamp
);
23
}
24
25
26
}
27
}
Waher.Persistence.FullTextSearch.Orders.MatchInformation
Contains matching information about a document in a search.
Definition:
MatchInformation.cs:10
Waher.Persistence.FullTextSearch.Orders.MatchInformation.Timestamp
DateTime Timestamp
Timestamp
Definition:
MatchInformation.cs:37
Waher.Persistence.FullTextSearch.Orders.OldestOrder
Orders entries from oldest to newest.
Definition:
OldestOrder.cs:9
Waher.Persistence.FullTextSearch.Orders.OldestOrder.OldestOrder
OldestOrder()
Orders entries from oldest to newest.
Definition:
OldestOrder.cs:13
Waher.Persistence.FullTextSearch.Orders.OldestOrder.Compare
int Compare(MatchInformation x, MatchInformation y)
IComparer<MatchInformation>.Compare
Definition:
OldestOrder.cs:20
Waher.Persistence.FullTextSearch.Orders
Definition:
MatchInformation.cs:5
IoTGateway
Persistence
Waher.Persistence.FullTextSearch
Orders
OldestOrder.cs
Generated by
1.9.5