getServiceResourceResolver with unique name | Community
Skip to main content
June 3, 2019
Solved

getServiceResourceResolver with unique name

  • June 3, 2019
  • 1 reply
  • 833 views

Hi to all,

we are using ResourceResolverFactory.getServiceResourceResolver from different threads and different event listener with a identical identifier, e.g.

Map<String, Object> authenticationProperties = new HashMap<>();

authenticationProperties.put(ResourceResolverFactory.SUBSERVICE, "our_id");

ret = resourceResolverFactory.getServiceResourceResolver(authenticationProperties);

We don't share the service resource resolver between thread or listeners. Every call to the listener or every thread calls the code snippet from above to get his own SRR and is closing the SRR when work is done.

Is this possible without running into problems when a thread or a event will be fired in parallel?

Or should we use different identifiers for event listener A, event listener B, background thread A, ...

Thanks

Uwe

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by joerghoh

AFAIK the subservice ID does not have to be unique, that means you can use the same snippet for multiple times.

Jörg

1 reply

joerghoh
Adobe Employee
joerghohAdobe EmployeeAccepted solution
Adobe Employee
June 3, 2019

AFAIK the subservice ID does not have to be unique, that means you can use the same snippet for multiple times.

Jörg