Skip to content

Instantly share code, notes, and snippets.

@jbogard
Created February 22, 2012 18:50
Show Gist options
  • Save jbogard/1886614 to your computer and use it in GitHub Desktop.
Save jbogard/1886614 to your computer and use it in GitHub Desktop.
public class ServerRoleHandler : IConfigureRole<AsA_Server>
{
public ConfigUnicastBus ConfigureRole(IConfigureThisEndpoint specifier)
{
if (!Configure.Instance.Configurer.HasComponent<ISendMessages>())
Configure.Instance.MsmqTransport();
return Configure.Instance
.Sagas()
.IsTransactional(true)
.PurgeOnStartup(false)
.UnicastBus()
.ImpersonateSender(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment