Uses of Class
cambio.simulator.entities.microservice.NoInstanceAvailableException
Packages that use NoInstanceAvailableException
Package
Description
Classes that directly relate to microservices, like operations, instances or instance modification events.
Contains implementations of resilience patterns.
-
Uses of NoInstanceAvailableException in cambio.simulator.entities.microservice
Methods in cambio.simulator.entities.microservice that throw NoInstanceAvailableExceptionModifier and TypeMethodDescriptionMicroservice.getNextAvailableInstance()
Uses the loadbalancer of this microservice to find the next suitable target instance. -
Uses of NoInstanceAvailableException in cambio.simulator.entities.patterns
Methods in cambio.simulator.entities.patterns that throw NoInstanceAvailableExceptionModifier and TypeMethodDescriptionILoadBalancingStrategy.getNextInstance
(Collection<MicroserviceInstance> runningInstances) Searches through the list of available instances to find the most suitable to receive the next request.LoadBalancer.getNextInstance
(Collection<MicroserviceInstance> instances) Retrieves the next candidate for receiving a request, consulting itsILoadBalancingStrategy
.QuickRoundRobinLoadbalancer.getNextInstance
(Collection<MicroserviceInstance> runningInstances) Searches through the list of available instances to find the most suitable to receive the next request.RandomLoadBalanceStrategy.getNextInstance
(Collection<MicroserviceInstance> runningInstances) Returns a random Microservice Instance of given Collection.RoundRobinLoadbalancer.getNextInstance
(Collection<MicroserviceInstance> runningInstances) Searches through the list of available instances to find the most suitable to receive the next request.