Session
What is a Session?
How to create a session?
OddsFeedSession session = oddsFeed.getSessionBuilder()
.setListener(new MyMessageListener())
.setMessageInterest(MessageInterest.AllMessages)
.build();var session = oddsFeed.CreateBuilder().SetMessageInterest(MessageInterest.AllMessages).Build();Best Practices
Last updated
Was this helpful?