Package | Description |
---|---|
jayeson.lib.sports.client |
Class and Description |
---|
DeleteEvent
This class is used when events are deleted in snapshot.
|
DeleteMatch
This class is used when matches are deleted in snapshot.
|
DeleteOdd
This class is used when odds are deleted in snapshot.
|
DeltaEventHandler
DeltaEventHandler handles delta snapshots.The function that will be triggered first is onFullSnapshotStart().The onFullSnapshotStart() indicates that this is the begining of the full snapshot.The following message will be the onInsertMatch and the very first onInsertMatch will contain the events and odds in the INSERT_MATCH message.Subsequently will receive onInsertEvent message followed by onInsertOdd.The onFullSnapshotEnd() indicates that the full snapshot is received completely.
For Match Insertion in sequence will be: 1.onInsertMatch 2.onInsertEvent (insert event always appear before a child insert odd msg) 3.onInsertOdd For Match Deletion in sequence will be: 1.onDeleteOdd (an odd always be deleted before the parent event is removed) 2.onDeleteEvent 3.onDeleteMatch Implement this interface to call methods whenever there is change is snapshot data |
DeltaMsg
This class is implemented by message classes to support delta snapshot and fullsnapshot
|
FeedView
Views perform filtering on feed data.
|
InsertEvent
This class is used when events are inserted in snapshot.
|
InsertMatch
This class is used when matches are inserted in snapshot.
|
InsertOdd
This class is used when odds are inserted in snapshot.
|
MemoryDispatcherFactory |
Reset
This class is used when all data to a the partition key is cleared
|
SportsConfig
A sports feed client side config to be loaded by SportsFeedFactory to create a client instance
|
SportsFeedClient
SportsFeedClient is created by SportsFeedFactory to consume Feed with loaded configurations
|
UpdateEvent
This class is used when events are updated in snapshot.
|
UpdateMatch
This class is used when matches are updated in snapshot.
|
UpdateOdd
This class is used when records are updated in snapshot.
|