PeanutButter
|
Describes the contract for textural feedback around running activities. More...
Public Member Functions | |
void | Run (string label, Action activity) |
Run the provided activity with the given label. | |
Task | RunAsync (string label, Func< Task > activity) |
Run the provided async activity with the given label. | |
void | Log (string str) |
Simply log within the context of the steps (ie with the same io & prefixing) | |
Task | LogAsync (string str) |
Simply log within the context of the steps (ie with the same io & prefixing) |
Describes the contract for textural feedback around running activities.
void PeanutButter.Utils.ITextStatusSteps.Log | ( | string | str | ) |
Simply log within the context of the steps (ie with the same io & prefixing)
str |
Implemented in PeanutButter.Utils.TextStatusSteps.
Task PeanutButter.Utils.ITextStatusSteps.LogAsync | ( | string | str | ) |
Simply log within the context of the steps (ie with the same io & prefixing)
str |
Implemented in PeanutButter.Utils.TextStatusSteps.
void PeanutButter.Utils.ITextStatusSteps.Run | ( | string | label, |
Action | activity ) |
Run the provided activity with the given label.
label | |
activity |
Implemented in PeanutButter.Utils.TextStatusSteps.
Task PeanutButter.Utils.ITextStatusSteps.RunAsync | ( | string | label, |
Func< Task > | activity ) |
Run the provided async activity with the given label.
label | |
activity |
Implemented in PeanutButter.Utils.TextStatusSteps.