Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Retries / IRetryCondition.cs
1 using System;
2
3 namespace Hammock.Retries
4 {
5     public interface IRetryCondition
6     {
7         
8     }
9
10     public interface IRetryCondition<T> : IRetryCondition
11     {
12         Predicate<T> RetryIf { get; }
13     }
14 }