keycloak-admin-client-reactive
what is the differnce to keycloak-admin-client
#38951
Answered
by
sberyozkin
agreedSkiing
asked this question in
Q&A
-
Started to wonder what is the difference between What we, the team I work in, have noticed is that we still need to do a runSubscriptionOn for our return Uni
.createFrom()
.item(() -> keycloak.realm(realm).users().count())
.invoke(() -> log.infov("Check that realm client {0} is up and running", clientId))
.runSubscriptionOn(Infrastructure.getDefaultWorkerPool()) P.S. This is also a continuation from #38874 (comment) question after the issue was closed. |
Beta Was this translation helpful? Give feedback.
Answered by
sberyozkin
Feb 22, 2024
Replies: 1 comment 2 replies
-
/cc @pedroigor (keycloak), @sberyozkin (keycloak) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@agreedSkiing As far as I recall the primary reason for introducing the
-reactive
extension was to make sure it could be used alongside RestEasy Reactive because otherwise keycloak-admin-client depends on the classic RestEasy and it was causing conflicts.You are right though that other than that, these extensions are no different to each other. However, once the Keycloak team introduces a Uni-aware version of its admin API, then we'll be able to differentiate.
@geoand Please correct me if I've missed something