Interface IEventReader
Simple interface for reading events from a stream.
Namespace: Sdl.LanguagePlatform.IO.Streams
Assembly: Sdl.LanguagePlatform.IO.dll
Syntax
public interface IEventReader
Methods
ReadAsync()
Reads the next item in the stream and returns the corresponding Event object, from that particular item.
Declaration
Task<Event> ReadAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<Event> | An Event object. |