-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs for Unreal Engine SDK #312
Conversation
b191eb2
to
f9ff47c
Compare
first example done up to line 169 Line 253 line 273 line 315 logging done 315/658 Polling modes done - 369/655 Delegates done offline mode done 433/668 http time and proxy 433/645 force refresh + skipping custom cache for now. GetAllValueDetails done get all values done get all keys done - 435/572 all lines done
899edbb
to
48feff3
Compare
48feff3
to
060b447
Compare
Co-authored-by: Peter Adam Korodi <[email protected]>
website/docs/sdk-reference/unreal.md
Outdated
| `ConnectTimeoutMs` | Optional, defaults to `8000ms`. Sets the amount of milliseconds to wait for the server to make the initial connection (i.e. completing the TCP connection handshake). `0` means it never times out during transfer | | ||
| `ReadTimeoutMs` | Optional, defaults to `5000ms`. Sets the amount of milliseconds to wait for the server to respond before giving up. `0` means it never times out during transfer. | | ||
| `PollingMode` | Optional, sets the polling mode for the client. [More about polling modes](#polling-modes). | | ||
| `AutoPollInterval` | For PollingMode == Custom, sets at least how often this policy should fetch the latest configuration and refresh the cache. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| `AutoPollInterval` | For PollingMode == Custom, sets at least how often this policy should fetch the latest configuration and refresh the cache. | | |
| `AutoPollInterval` | For PollingMode == Custom, sets at least how often this policy should fetch the latest config JSON and refresh the cache. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I missed this suggestion, I will apply the change manually next commit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, but we had some changes regarding internal links. Could you please change them?
Co-authored-by: Lajos Szoke <[email protected]>
Sure thing. I've committed the suggested edits and fixed one more link I found locally using the old format. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @pasotee !
A few links are missing from:
- sidebars.js
- index.js
website/docs/sdk-reference/unreal.md
Outdated
|
||
## Custom Cache | ||
|
||
**Coming soon**: [https://github.com/configcat/unreal-engine-sdk/issues/9](Support for Custom Cache #9) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: Gergely Sinka <[email protected]>
hey @sigewuzhere, thanks for taking a look. I've applied your suggestions and fixed the broken links. Regarding the links (sidebar.js & index.js), I've removed them on purpose. I will submit the SDK for approval from the Unreal team (they will use a static link to access to documentation during the review process) and once it's publicly available, I will make a follow-up PR to add the missing links. Regarding the broken header, it looks like there is an extra
to
I don't see it on the GitHub version, can you confirm if this is a local problem? Otherwise I will try to dig deeper into it. |
Co-authored-by: Peter Adam Korodi <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @pasotee ! Thanks, yeah the n was a local mistake, sorry about that. All good to go from my end.
Description
First iteration for the Unreal Engine SDK docs.
Requirement checklist