Skip to content

Instantly share code, notes, and snippets.

@nczeczulin
Created August 1, 2013 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nczeczulin/6128867 to your computer and use it in GitHub Desktop.
Save nczeczulin/6128867 to your computer and use it in GitHub Desktop.
Splunk Modular Input for MSMQ Message Handler Interface
namespace Splunk.ModularInput.Msmq.MessageHandlerContracts
{
public interface IMessageHandler
{
System.Messaging.IMessageFormatter MessageBodyFormatter { get; }
System.Messaging.MessagePropertyFilter MessageReadPropertyFilter { get; }
void SetConfiguration(string handlerArgs);
string GetSplunkEventData(System.Messaging.Message msg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment