Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ICodecProgress.cs
1using System;
3using System.Threading.Tasks;
4
5namespace Waher.Content
6{
10 public interface ICodecProgress
11 {
28 Task EarlyHint(string Resource, string Relation,
29 params KeyValuePair<string, string>[] AdditionalParameters);
30
35
40
45 void DependencyTimestamp(DateTime Timestamp);
46 }
47}
Interface for reporting progress about an encoding or decoding.
Task HeaderProcessed()
Called when the header has been processed.
void DependencyTimestamp(DateTime Timestamp)
Reports a dependency timestamp.
Task EarlyHint(string Resource, string Relation, params KeyValuePair< string, string >[] AdditionalParameters)
Reports an early hint of a resource the recipient may need to process, in order to be able to process...
Task BodyProcessed()
Called when the body has been processed.