Uses of Interface
com.segment.analytics.messages.Message
-
Packages that use Message Package Description com.segment.analytics.messages -
-
Uses of Message in com.segment.analytics.messages
Classes in com.segment.analytics.messages with type parameters of type Message Modifier and Type Class Description class
MessageBuilder<T extends Message,V extends MessageBuilder>
Fluent API to construct instances of aMessage
.Classes in com.segment.analytics.messages that implement Message Modifier and Type Class Description class
AliasMessage
The alias message is used to merge two user identities, effectively connecting two sets of user data as one.class
GroupMessage
The group API call is how you associate an individual user with a group—be it a company, organization, account, project, team or whatever other crazy name you came up with for the same concept! It also lets you record custom traits about the group, like industry or number of employees.class
IdentifyMessage
The identify call ties a customer and their actions to a recognizable ID and traits like their email, name, etc.class
PageMessage
The page call lets you record whenever a user sees a page of your website, along with any properties about the page.class
ScreenMessage
The screen call lets you record whenever a user sees a screen, along with any properties about the screen.class
TrackMessage
The track API call is how you record any actions your users perform, along with any properties that describe the action.Methods in com.segment.analytics.messages that return types with arguments of type Message Modifier and Type Method Description abstract java.util.List<Message>
Batch. batch()
Method parameters in com.segment.analytics.messages with type arguments of type Message Modifier and Type Method Description static Batch
Batch. create(java.util.Map<java.lang.String,?> context, java.util.List<Message> batch, java.lang.String writeKey)
-