Skip to content

Commit

Permalink
Removed unused methods on IInsightManager
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-may committed Mar 8, 2020
1 parent c0c5bda commit 86ec8e2
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions Common/Algorithm/Framework/Alphas/Analysis/IInsightManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,6 @@ public interface IInsightManager
/// </summary>
IEnumerable<Insight> AllInsights { get; }

/// <summary>
/// Gets the unique set of symbols from analysis contexts that will
/// </summary>
/// <param name="frontierTimeUtc"></param>
/// <returns></returns>
IEnumerable<InsightAnalysisContext> ContextsOpenAt(DateTime frontierTimeUtc);

/// <summary>
/// Add an extension to this manager
/// </summary>
Expand Down Expand Up @@ -72,13 +65,5 @@ public interface IInsightManager
/// </summary>
/// <param name="insightIds">The insights ids to be removed</param>
void RemoveInsights(IEnumerable<Guid> insightIds);

/// <summary>
/// Gets all insight analysis contexts that have been updated since this method's last invocation.
/// Contexts are marked as not updated during the enumeration, so in order to remove a context from
/// the updated set, the enumerable must be enumerated.
/// </summary>
/// <returns></returns>
IEnumerable<InsightAnalysisContext> GetUpdatedContexts();
}
}

0 comments on commit 86ec8e2

Please sign in to comment.