Uses of Interface
com.soklet.IdGenerator
Packages that use IdGenerator
-
Uses of IdGenerator in com.soklet
Methods in com.soklet that return IdGeneratorModifier and TypeMethodDescriptionstatic IdGenerator<String> IdGenerator.withDefaults()Acquires a threadsafeIdGeneratorwith a default numeric ID range (values will wrap once maximum is reached) and a best-effort local IP prefix.static IdGenerator<String> IdGenerator.withPrefix(String prefix) Acquires a threadsafeIdGeneratorwith a default numeric ID range (values will wrap once maximum is reached) and the given prefix.static IdGenerator<String> Acquires a threadsafeIdGeneratorwith the given minimum and maximum ID values (values will wrap once maximum is reached), and a best-effort local IP prefix.static IdGenerator<String> IdGenerator.withRangeAndPrefix(Long minimumId, Long maximumId, String prefix) Returns a threadsafeIdGeneratorwith the given minimum and maximum ID values (values will wrap once maximum is reached), and the specified prefix.Methods in com.soklet with parameters of type IdGeneratorModifier and TypeMethodDescriptionRequest.PathBuilder.idGenerator(IdGenerator idGenerator) Request.RawBuilder.idGenerator(IdGenerator idGenerator) Server.Builder.idGenerator(IdGenerator<?> idGenerator) ServerSentEventServer.Builder.idGenerator(IdGenerator<?> idGenerator)