-
Notifications
You must be signed in to change notification settings - Fork 16
Message Processor
Sam Dozor edited this page Feb 17, 2017
·
2 revisions
The base MessageProcessor
implementation is responsible for parsing incoming Message
objects. MessageProcessor
contains several abstract and empty method implementations responsible for processing Message
objects which you will override and implement. Currently the types of messages are:
- Module Registration Request and Response
- Event Processing Request and Response
- Audience Membership Subscription Request and Response
- Audience Subscription Request and Response
To get started creating your MessageProcessor
, if you're using the sample project, open and edit SampleExtension.java
. Otherwise, create a class that extends com.mparticle.sdk.MessageProcessor
.