ITraceable - remove set from the Header property since that is an implementation detail only. Remove commented methods/properties and cleanup documentation to reflect the new specification
This commit is contained in:
parent
183f5b0672
commit
352b157801
|
@ -11,30 +11,20 @@
|
|||
/// </summary>
|
||||
public interface ITraceable : IEmulatorService
|
||||
{
|
||||
//bool Enabled { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the header that would be used by a trace logger
|
||||
/// </summary>
|
||||
string Header { get; set; }
|
||||
string Header { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The current log of cpu instructions
|
||||
/// Sets the sink
|
||||
/// that's right, we can only have one sink.
|
||||
/// a sink can route to two other sinks if it has to, though
|
||||
/// </summary>
|
||||
//IEnumerable<TraceInfo> Contents { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Takes the current log of cpu instructions, when doing so, it will clear the contents from the buffer
|
||||
/// </summary>
|
||||
//IEnumerable<TraceInfo> TakeContents();
|
||||
|
||||
//void Put(TraceInfo content);
|
||||
|
||||
// that's right, we can only have one sink.
|
||||
//a sink can route to two other sinks if it has to, though
|
||||
ITraceSink Sink { get; set; }
|
||||
ITraceSink Sink { set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether racing is enabled
|
||||
/// This is defined as equivalent to Sink != null
|
||||
/// It's put here because it's such a common operation to check whether it's enabled, and it's not nice to write Sink != null all over
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue