Package com.nimbusds.jose.jwk.source
Class CachingJWKSetSource.RefreshInitiatedEvent<C extends SecurityContext>
- java.lang.Object
-
- com.nimbusds.jose.jwk.source.CachingJWKSetSource.RefreshInitiatedEvent<C>
-
- All Implemented Interfaces:
Event<CachingJWKSetSource<C>,C>
- Enclosing class:
- CachingJWKSetSource<C extends SecurityContext>
public static class CachingJWKSetSource.RefreshInitiatedEvent<C extends SecurityContext> extends Object
JWK set cache refresh initiated event.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description C
getContext()
Returns the optional context.S
getSource()
Returns the event source.int
getThreadQueueLength()
Returns an estimate of the number of queued threads.
-
-
-
Method Detail
-
getThreadQueueLength
public int getThreadQueueLength()
Returns an estimate of the number of queued threads.- Returns:
- An estimate of the number of queued threads.
-
getSource
public S getSource()
Description copied from interface:Event
Returns the event source.- Specified by:
getSource
in interfaceEvent<S extends JWKSetSource<C>,C extends SecurityContext>
- Returns:
- The event source.
-
getContext
public C getContext()
Description copied from interface:Event
Returns the optional context.- Specified by:
getContext
in interfaceEvent<S extends JWKSetSource<C>,C extends SecurityContext>
- Returns:
- The optional context,
null
if not specified.
-
-