Class Swarm
Assembly: Libplanet.dll
Syntax
public class Swarm : ICollection<Peer>, IEnumerable<Peer>, IEnumerable
Constructors
|
Improve this Doc
View Source
Swarm(PrivateKey, Int32, Int32, Int32, String, Nullable<Int32>, Nullable<DateTimeOffset>, IEnumerable<IceServer>, EventHandler<DifferentProtocolVersionEventArgs>)
Declaration
public Swarm(PrivateKey privateKey, int appProtocolVersion, int millisecondsDialTimeout = 15000, int millisecondsLinger = 1000, string host = null, int? listenPort = default(int? ), DateTimeOffset? createdAt = default(DateTimeOffset? ), IEnumerable<IceServer> iceServers = null, EventHandler<DifferentProtocolVersionEventArgs> differentVersionPeerEncountered = null)
Parameters
|
Improve this Doc
View Source
Swarm(PrivateKey, Int32, TimeSpan, TimeSpan, String, Nullable<Int32>, Nullable<DateTimeOffset>, IEnumerable<IceServer>, EventHandler<DifferentProtocolVersionEventArgs>)
Declaration
public Swarm(PrivateKey privateKey, int appProtocolVersion, TimeSpan dialTimeout, TimeSpan linger, string host = null, int? listenPort = default(int? ), DateTimeOffset? createdAt = default(DateTimeOffset? ), IEnumerable<IceServer> iceServers = null, EventHandler<DifferentProtocolVersionEventArgs> differentVersionPeerEncountered = null)
Parameters
Properties
|
Improve this Doc
View Source
Address
Declaration
public Address Address { get; }
Property Value
|
Improve this Doc
View Source
AsPeer
Declaration
public Peer AsPeer { get; }
Property Value
|
Improve this Doc
View Source
BlockReceived
Declaration
public AsyncAutoResetEvent BlockReceived { get; }
Property Value
Type |
Description |
Nito.AsyncEx.AsyncAutoResetEvent |
|
|
Improve this Doc
View Source
Count
Declaration
public int Count { get; }
Property Value
|
Improve this Doc
View Source
DeltaDistributed
Declaration
public AsyncAutoResetEvent DeltaDistributed { get; }
Property Value
Type |
Description |
Nito.AsyncEx.AsyncAutoResetEvent |
|
|
Improve this Doc
View Source
DeltaReceived
Declaration
public AsyncAutoResetEvent DeltaReceived { get; }
Property Value
Type |
Description |
Nito.AsyncEx.AsyncAutoResetEvent |
|
|
Improve this Doc
View Source
EndPoint
Declaration
public DnsEndPoint EndPoint { get; }
Property Value
|
Improve this Doc
View Source
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
|
Improve this Doc
View Source
LastDistributed
Declaration
public DateTimeOffset LastDistributed { get; }
Property Value
|
Improve this Doc
View Source
LastReceived
Declaration
public DateTimeOffset LastReceived { get; }
Property Value
|
Improve this Doc
View Source
LastSeenTimestamps
Declaration
public IDictionary<Peer, DateTimeOffset> LastSeenTimestamps { get; }
Property Value
|
Improve this Doc
View Source
Running
Whether this Swarm instance is running.
Declaration
public bool Running { get; }
Property Value
|
Improve this Doc
View Source
TxReceived
Declaration
public AsyncAutoResetEvent TxReceived { get; }
Property Value
Type |
Description |
Nito.AsyncEx.AsyncAutoResetEvent |
|
Methods
|
Improve this Doc
View Source
Add(Peer)
Declaration
public void Add(Peer item)
Parameters
Type |
Name |
Description |
Peer |
item |
|
|
Improve this Doc
View Source
AddPeersAsync(IEnumerable<Peer>, Nullable<DateTimeOffset>, CancellationToken)
Declaration
public Task<ISet<Peer>> AddPeersAsync(IEnumerable<Peer> peers, DateTimeOffset? timestamp = default(DateTimeOffset? ), CancellationToken cancellationToken = default(CancellationToken))
Parameters
Returns
|
Improve this Doc
View Source
BroadcastBlocks<T>(IEnumerable<Block<T>>)
Declaration
public void BroadcastBlocks<T>(IEnumerable<Block<T>> blocks)
where T : IAction, new()
Parameters
Type Parameters
|
Improve this Doc
View Source
BroadcastTxs<T>(IEnumerable<Transaction<T>>)
Declaration
public void BroadcastTxs<T>(IEnumerable<Transaction<T>> txs)
where T : IAction, new()
Parameters
Type Parameters
|
Improve this Doc
View Source
Clear()
Declaration
|
Improve this Doc
View Source
Contains(Peer)
Declaration
public bool Contains(Peer item)
Parameters
Type |
Name |
Description |
Peer |
item |
|
Returns
|
Improve this Doc
View Source
CopyTo(Peer[], Int32)
Declaration
public void CopyTo(Peer[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
Peer[] |
array |
|
Int32 |
arrayIndex |
|
|
Improve this Doc
View Source
Finalize()
Declaration
protected void Finalize()
|
Improve this Doc
View Source
GetEnumerator()
Declaration
public IEnumerator<Peer> GetEnumerator()
Returns
|
Improve this Doc
View Source
PreloadAsync<T>(BlockChain<T>, IProgress<BlockDownloadState>, CancellationToken)
Preemptively downloads blocks from registered Peers.
Declaration
public Task PreloadAsync<T>(BlockChain<T> blockChain, IProgress<BlockDownloadState> progress = null, CancellationToken cancellationToken = default(CancellationToken))
where T : IAction, new()
Parameters
Returns
Type |
Description |
Task |
A task without value.
You only can await until the method is completed.
|
Type Parameters
|
Improve this Doc
View Source
Remove(Peer)
Declaration
public bool Remove(Peer item)
Parameters
Type |
Name |
Description |
Peer |
item |
|
Returns
|
Improve this Doc
View Source
StartAsync<T>(BlockChain<T>, Int32, CancellationToken)
Declaration
public Task StartAsync<T>(BlockChain<T> blockChain, int millisecondsDistributeInterval = 1500, CancellationToken cancellationToken = default(CancellationToken))
where T : IAction, new()
Parameters
Returns
Type Parameters
|
Improve this Doc
View Source
StartAsync<T>(BlockChain<T>, TimeSpan, CancellationToken)
Declaration
public Task StartAsync<T>(BlockChain<T> blockChain, TimeSpan distributeInterval, CancellationToken cancellationToken = default(CancellationToken))
where T : IAction, new()
Parameters
Returns
Type Parameters
|
Improve this Doc
View Source
StopAsync(CancellationToken)
Declaration
public Task StopAsync(CancellationToken cancellationToken = default(CancellationToken))
Parameters
Returns
|
Improve this Doc
View Source
WaitForRunningAsync()
Waits until this Swarm instance gets started to run.
Declaration
public Task WaitForRunningAsync()
Returns
Events
|
Improve this Doc
View Source
DifferentVersionPeerEncountered
Declaration
public event EventHandler<DifferentProtocolVersionEventArgs> DifferentVersionPeerEncountered
Event Type
Explicit Interface Implementations
|
Improve this Doc
View Source
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Implements