Skip to content

Instantly share code, notes, and snippets.

@mauricio
Created February 6, 2015 14:02
Show Gist options
  • Save mauricio/e36f874830d9a4222ac1 to your computer and use it in GitHub Desktop.
Save mauricio/e36f874830d9a4222ac1 to your computer and use it in GitHub Desktop.
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