Uses of Class
cambio.simulator.entities.microservice.MicroserviceInstance
Packages that use MicroserviceInstance
Package
Description
Classes that directly relate to microservices, like operations, instances or instance modification events.
Network behavior revolving around request sending, monitoring and receiving.
Contains implementations of resilience patterns.
CPU simulation classes.
-
Uses of MicroserviceInstance in cambio.simulator.entities.microservice
Fields in cambio.simulator.entities.microservice with type parameters of type MicroserviceInstanceModifier and TypeFieldDescriptionprotected final Set<MicroserviceInstance>
Microservice.instancesSet
Methods in cambio.simulator.entities.microservice that return MicroserviceInstanceModifier and TypeMethodDescriptionMicroservice.getNextAvailableInstance()
Uses the loadbalancer of this microservice to find the next suitable target instance.Methods in cambio.simulator.entities.microservice that return types with arguments of type MicroserviceInstanceMethods in cambio.simulator.entities.microservice with parameters of type MicroserviceInstanceModifier and TypeMethodDescriptionvoid
InstanceKillEvent.eventRoutine
(MicroserviceInstance microserviceInstance) void
InstanceShutdownEndEvent.eventRoutine
(MicroserviceInstance microserviceInstance) void
InstanceShutdownStartEvent.eventRoutine
(MicroserviceInstance microserviceInstance) void
InstanceStartupEvent.eventRoutine
(MicroserviceInstance microserviceInstance) -
Uses of MicroserviceInstance in cambio.simulator.entities.networking
Methods in cambio.simulator.entities.networking that return MicroserviceInstanceModifier and TypeMethodDescriptionRequestAnswer.getAnswerSender()
Request.getHandler()
Request.getRequester()
protected MicroserviceInstance
NetworkRequestSendEvent.retrieveTargetInstance()
Methods in cambio.simulator.entities.networking with parameters of type MicroserviceInstanceModifier and TypeMethodDescriptionfinal NetworkRequestSendEvent
RequestSender.sendRequest
(String eventName, Request request, MicroserviceInstance target) Starts a RequestSendingProcess.final NetworkRequestSendEvent
RequestSender.sendRequest
(String eventName, Request request, MicroserviceInstance target, desmoj.core.simulator.TimeSpan delay) Starts a RequestSendingProcess.void
Request.setHandler
(MicroserviceInstance handler) Constructors in cambio.simulator.entities.networking with parameters of type MicroserviceInstanceModifierConstructorDescriptionInternalRequest
(desmoj.core.simulator.Model model, boolean showInTrace, ServiceDependencyInstance dependency, MicroserviceInstance requester) Constructs a new Internal Request.NetworkRequestReceiveEvent
(desmoj.core.simulator.Model model, String name, boolean showInTrace, Request travelingRequest, MicroserviceInstance receiver) NetworkRequestSendEvent
(desmoj.core.simulator.Model model, String name, boolean showInTrace, Request request, MicroserviceInstance target) protected
Request
(desmoj.core.simulator.Model model, String name, boolean showInTrace, Request parent, Operation operation, MicroserviceInstance requester) RequestAnswer
(Request wrappedRequest, MicroserviceInstance answerSender) Constructs a newRequestAnswer
. -
Uses of MicroserviceInstance in cambio.simulator.entities.patterns
Fields in cambio.simulator.entities.patterns declared as MicroserviceInstanceMethods in cambio.simulator.entities.patterns that return MicroserviceInstanceModifier and TypeMethodDescriptionLoadBalancer.getLastChosenInstance()
EvenLoadBalanceStrategy.getNextInstance
(Collection<MicroserviceInstance> runningInstances) Returns the Microservice Instance the handeled the least amount of requests since the last scaling operation.ILoadBalancingStrategy.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.UtilizationBalanceStrategy.getNextInstance
(Collection<MicroserviceInstance> runningInstances) Returns the instance of the given list, which currently has the lowest demand left.Methods in cambio.simulator.entities.patterns with parameters of type MicroserviceInstanceModifier and TypeMethodDescriptionInstanceOwnedPatternConfiguration.getPatternInstance
(@NotNull MicroserviceInstance owner) Parses this configuration into a pattern instance.Method parameters in cambio.simulator.entities.patterns with type arguments of type MicroserviceInstanceModifier and TypeMethodDescriptionEvenLoadBalanceStrategy.getNextInstance
(Collection<MicroserviceInstance> runningInstances) Returns the Microservice Instance the handeled the least amount of requests since the last scaling operation.ILoadBalancingStrategy.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.UtilizationBalanceStrategy.getNextInstance
(Collection<MicroserviceInstance> runningInstances) Returns the instance of the given list, which currently has the lowest demand left. -
Uses of MicroserviceInstance in cambio.simulator.resources.cpu
Constructors in cambio.simulator.resources.cpu with parameters of type MicroserviceInstanceModifierConstructorDescriptionCPU
(desmoj.core.simulator.Model model, String name, boolean showInTrace, int capacity, int threadPoolSize, MicroserviceInstance owner) Constructs a new CPU with a default Round-Robin scheduler.CPU
(desmoj.core.simulator.Model model, String name, boolean showInTrace, int capacity, MicroserviceInstance owner) Constructs a new CPU with a default Round-Robin scheduler and a default thread pool size ofCPUImpl.DEFAULT_THREADPOOLSIZE
.CPU
(desmoj.core.simulator.Model model, String name, boolean showInTrace, int capacity, CPUProcessScheduler scheduler, MicroserviceInstance owner) Constructs a new CPU with a default thread pool size ofCPUImpl.DEFAULT_THREADPOOLSIZE
.CPU
(desmoj.core.simulator.Model model, String name, boolean showInTrace, MicroserviceInstance owner, int capacity, CPUProcessScheduler scheduler, int threadPoolSize) Constructs a new CPU resource instance.