Skip to content

Instantly share code, notes, and snippets.

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