IResolvable`1.cs
10 lines
| 167 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | using System; | |
namespace Implab { | |||
public interface IResolvable<in T> { | |||
void Resolve(T value); | |||
void Reject(Exception reason); | |||
} | |||
} |