Created
February 6, 2015 14:02
-
-
Save mauricio/e36f874830d9a4222ac1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using SpiShared; | |
namespace SpiController.Queue | |
{ | |
public interface IQueueService | |
{ | |
Option<QueueMessage<T>> Poll<T>(Func<string,T> parser); | |
void Push(string queueUrl, string message); | |
void Delete<T>(QueueMessage<T> message); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment