Skip to content

Commit c61944f

Browse files
committed
docs(common use case): add login queue
1 parent 8a0a16c commit c61944f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docs/common_use_cases.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,27 @@ final ModelFreeFormNotificationRequest notifBody =
762762
adminWrapper.freeFormNotification(
763763
FreeFormNotification.builder().namespace(this.namespace).body(notifBody).build());
764764
```
765+
## LoginQueue
766+
767+
Source: [TestIntegrationServiceLoginQueue.java](../src/test/java/net/accelbyte/sdk/integration/TestIntegrationServiceLoginQueue.java)
768+
769+
### Get configuration
770+
771+
```java
772+
final ApimodelsConfigurationResponse config = wrapper.adminGetConfiguration(AdminGetConfiguration.builder()
773+
.namespace(namespace)
774+
.build());
775+
```
776+
777+
### Update configurationF
778+
779+
```java
780+
final ApimodelsConfigurationResponse configUpdate = wrapper.adminUpdateConfiguration(AdminUpdateConfiguration
781+
.builder()
782+
.namespace(namespace)
783+
.body(ApimodelsConfigurationRequest.builder().maxLoginRate(maxLoginRate).build())
784+
.build());
785+
```
765786
## MatchmakingV2
766787

767788
Source: [TestIntegrationServiceMatch2.java](../src/test/java/net/accelbyte/sdk/integration/TestIntegrationServiceMatch2.java)

0 commit comments

Comments
 (0)