Uses of Interface
com.sportradar.livedata.sdk.feed.livescout.interfaces.LiveScoutFeed
-
Packages that use LiveScoutFeed Package Description com.sportradar.livedata.sdk.di This package should only contain classes associated with IOC container used to build the dependency tree.com.sportradar.livedata.sdk.dispatch.livescout com.sportradar.livedata.sdk.feed.livescout.classes com.sportradar.livedata.sdk.feed.livescout.interfaces Contains Live Scout related interfacescom.sportradar.livedata.sdk.feed.sdk Contains SDK entry point -
-
Uses of LiveScoutFeed in com.sportradar.livedata.sdk.di
Methods in com.sportradar.livedata.sdk.di that return LiveScoutFeed Modifier and Type Method Description protected LiveScoutFeed
LiveScoutInjectionModule. provideFeed(jakarta.inject.Provider<ProtocolManager<OutgoingMessage,LiveScoutEntityBase>> protocolManagerProvider, jakarta.inject.Provider<LiveScoutUserRequestManagerImpl> userRequestManagerProvider, jakarta.inject.Provider<LiveScoutDispatcher> dispatcherProvider, jakarta.inject.Provider<SdkLogger> sdkLoggerProvider)
-
Uses of LiveScoutFeed in com.sportradar.livedata.sdk.dispatch.livescout
Methods in com.sportradar.livedata.sdk.dispatch.livescout with parameters of type LiveScoutFeed Modifier and Type Method Description void
LiveScoutDisruptorDispatcher. dispatchOnClosed(LiveScoutFeed sender)
void
LiveScoutDisruptorDispatcher. dispatchOnFeedEvent(LiveScoutFeed sender, FeedEventType eventType)
void
LiveScoutDisruptorDispatcher. dispatchOnInitialized(LiveScoutFeed sender)
void
LiveScoutDisruptorDispatcher. dispatchOnOpened(LiveScoutFeed sender)
void
LiveScoutDispatcher. setFeed(LiveScoutFeed feed)
Set the feed.void
LiveScoutDisruptorDispatcher. setFeed(LiveScoutFeed feed)
Set the feed.Constructors in com.sportradar.livedata.sdk.dispatch.livescout with parameters of type LiveScoutFeed Constructor Description EntityEventHandler(int id, int dispatcherCount, LiveScoutFeedListener listener, LiveScoutFeed feed)
Initializes a new instance of theEntityEventHandler
classLoggingEntityEventHandler(int id, int dispatcherCount, LiveScoutFeedListener listener, LiveScoutFeed feed)
Initializes a new instance of theEntityEventHandler
classStatisticsLiveScoutEntityEventHandler(int id, int dispatcherCount, LiveScoutFeedListener listener, LiveScoutFeed feed, LiveScoutStatisticsCounter counter)
Initializes a new instance of theEntityEventHandler
class -
Uses of LiveScoutFeed in com.sportradar.livedata.sdk.feed.livescout.classes
Classes in com.sportradar.livedata.sdk.feed.livescout.classes that implement LiveScoutFeed Modifier and Type Class Description class
LiveScoutFeedImpl
ALiveScoutFeed
implementation used to manage live-scout feed. -
Uses of LiveScoutFeed in com.sportradar.livedata.sdk.feed.livescout.interfaces
Methods in com.sportradar.livedata.sdk.feed.livescout.interfaces with parameters of type LiveScoutFeed Modifier and Type Method Description void
LiveScoutFeedListener. onClosed(LiveScoutFeed sender)
Invoked when the feed is closed.void
LiveScoutFeedListener. onFeedEvent(LiveScoutFeed sender, FeedEventType eventType)
Invoked by the observed live feed when it encounters an special event related to the behavior of the server.void
LiveScoutFeedListener. onFullMatchUpdateReceived(LiveScoutFeed sender, MatchUpdateEntity matchUpdate)
Invoked by the observedLiveScoutFeed
when full match update is received.void
LiveScoutFeedListener. onFullPaginatedMatchUpdateReceived(LiveScoutFeed sender, MatchUpdateEntity matchUpdate)
Invoked by the observedLiveScoutFeed
when partial match update is received.void
LiveScoutFeedListener. onInitialized(LiveScoutFeed sender)
Invoked when the feed is initialized and you can accept bets.void
LiveScoutFeedListener. onLineupsReceived(LiveScoutFeed sender, LineupsEntity lineups)
Invoked by the observedLiveScoutFeed
when player lineups for both teams are received.void
LiveScoutFeedListener. onMatchBooked(LiveScoutFeed sender, MatchBookingEntity matchBooked)
Invoked by the observedLiveScoutFeed
when a match-booked reply is received.void
LiveScoutFeedListener. onMatchDataReceived(LiveScoutFeed sender, MatchDataEntity matchData)
Invoked by the observedLiveScoutFeed
when match data is received.void
LiveScoutFeedListener. onMatchDeltaUpdateReceived(LiveScoutFeed sender, MatchUpdateEntity matchUpdate)
Invoked by the observedLiveScoutFeed
when match delta update is received.void
LiveScoutFeedListener. onMatchDeltaUpdateUpdateReceived(LiveScoutFeed sender, MatchUpdateEntity matchUpdate)
Invoked by the observedLiveScoutFeed
when match delta update delta message is received.void
LiveScoutFeedListener. onMatchListReceived(LiveScoutFeed sender, MatchListEntity matchList)
Invoked by the observedLiveScoutFeed
when match list requested by the user is received.void
LiveScoutFeedListener. onMatchListUpdateReceived(LiveScoutFeed sender, MatchListUpdateEntity matchList)
Invoked by the observedLiveScoutFeed
when an unsolicited match list is received.void
LiveScoutFeedListener. onMatchStopped(LiveScoutFeed sender, MatchStopEntity matchStop)
Invoked by the observedLiveScoutFeed
after the was un-subscribed from a match or if subscription to a match failed.void
LiveScoutFeedListener. onMatchUpdateReceived(LiveScoutFeed sender, MatchUpdateEntity matchUpdate)
Invoked by the observedLiveScoutFeed
when match update message is received.void
LiveScoutFeedListener. onOpened(LiveScoutFeed sender)
Invoked when the feed is opened.void
LiveScoutFeedListener. onServerTimeReceived(LiveScoutFeed sender, ServerTimeEntity serverTime)
Server time request response -
Uses of LiveScoutFeed in com.sportradar.livedata.sdk.feed.sdk
Methods in com.sportradar.livedata.sdk.feed.sdk that return LiveScoutFeed Modifier and Type Method Description LiveScoutFeed
Sdk. getLiveScout()
Gets theLiveScoutFeed
implementation used to manage the live-scout feed.
-