File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -762,6 +762,27 @@ final ModelFreeFormNotificationRequest notifBody =
762
762
adminWrapper. freeFormNotification(
763
763
FreeFormNotification . builder(). namespace(this . namespace). body(notifBody). build());
764
764
```
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
+ ```
765
786
## MatchmakingV2
766
787
767
788
Source: [ TestIntegrationServiceMatch2.java] ( ../src/test/java/net/accelbyte/sdk/integration/TestIntegrationServiceMatch2.java )
You can’t perform that action at this time.
0 commit comments