-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
432 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,20 @@ The package contains: | |
For more information please contact [email protected] or visit https://iodocs.betradar.com/unifiedsdk/index.html | ||
|
||
CHANGE LOG: | ||
2022-04-26 1.52.0 | ||
Separate HttpClient for critical (summary, player profile, competitor profile and variant market description) and other requests | ||
Added configuration option for fast HttpClient in OperationManager (default timeout 5s) | ||
Added GetTimelineEventsAsync to ISportDataProvider - extended with ISportDataProviderV11 | ||
Improved merging of competitor profile | ||
Modified sliding expiration of profile cache items to avoid GC congestion | ||
Improved how SportDataProvider is handling exceptions | ||
Improved metrics and logging for raw data events | ||
Improved metrics with app and system metrics | ||
Added metrics for SemaphorePool | ||
Fixed exception handling in DataRouterManager | ||
Extended RawApiDataEventArgs with RequestParams, RequestTime and Language | ||
Other minor improvements for observability | ||
|
||
2022-02-23 1.51.0 | ||
Added BetradarName to IRound (extended with IRoundV3) | ||
Fix: ICompetition competitors did not expose IsVirtual correctly | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/Sportradar.OddsFeed.SDK.Docs/Content/Code Snippets1.snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- This is an example code snippets file --> | ||
<examples> | ||
<item id="ClassDefinition#Define"> | ||
<sampleCode language="CSharp"> | ||
public class CSharpClass() | ||
{ | ||
// Members go here | ||
} | ||
</sampleCode> | ||
<sampleCode language="VisualBasic"> | ||
Public Class VBClass | ||
' Members go here | ||
End Class | ||
</sampleCode> | ||
</item> | ||
|
||
<item id="CreateInstance#Local"> | ||
<sampleCode language="CSharp"> | ||
CSharpClass x = new CSharpClass(); | ||
</sampleCode> | ||
<sampleCode language="VisualBasic"> | ||
Dim x As VBClass = New VBClass() | ||
</sampleCode> | ||
</item> | ||
|
||
<item id="CreateInstance#Static"> | ||
<sampleCode language="CSharp"> | ||
public static CSharpClass sharedInstance = new CSharpClass(); | ||
</sampleCode> | ||
<sampleCode language="VisualBasic"> | ||
Public Shared sharedInstance As VBClass = New VBClass() | ||
</sampleCode> | ||
</item> | ||
</examples> | ||
|
Oops, something went wrong.