Skip to content

Instantly share code, notes, and snippets.

@speier
Created August 30, 2012 10:51
Show Gist options
  • Save speier/3526211 to your computer and use it in GitHub Desktop.
Save speier/3526211 to your computer and use it in GitHub Desktop.
ServiceStack MQ mockup
[Auth]
public class ReportService : RestServiceBase<Report>
{
public IReportRepository Repository { get; set; }
public override object OnGet(Report request)
{
using (var producer = MessageFactory.CreateMessageProducer())
{
producer.Publish(request);
}
return Repository.GetById(request.Id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment