267e0b8cbe
reenable tekno support address vagrant thread issue refactor game log reader creation to follow better practices fix bot issues/address how guids are generated for bots/none provided
30 lines
830 B
C#
30 lines
830 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// represents the abstraction of game log reading
|
|
/// </summary>
|
|
public interface IGameLogReader
|
|
{
|
|
/// <summary>
|
|
/// get new events that have occured since the last poll
|
|
/// </summary>
|
|
/// <param name="fileSizeDiff"></param>
|
|
/// <param name="startPosition"></param>
|
|
/// <returns></returns>
|
|
Task<IEnumerable<GameEvent>> ReadEventsFromLog(long fileSizeDiff, long startPosition);
|
|
|
|
/// <summary>
|
|
/// how long the log file is
|
|
/// </summary>
|
|
long Length { get; }
|
|
|
|
/// <summary>
|
|
/// how often to poll the log file
|
|
/// </summary>
|
|
int UpdateInterval { get; }
|
|
}
|
|
}
|