Class InfiniteServer

All Implemented Interfaces:
Serializable, Copyable

public class InfiniteServer extends Server implements Serializable
A service section with an infinite number of servers (pure delay).

This server models a pure delay station where every arriving job immediately enters service without queueing. Also known as an M/G/∞ queue, it represents scenarios where resources are unlimited, such as think time in interactive systems or self-service operations where capacity is effectively unlimited.

See Also:
  • Constructor Details

    • InfiniteServer

      public InfiniteServer(List<JobClass> jobClasses)
      Creates a new infinite server section for the specified job classes. Sets the number of servers to infinity, ensuring no queueing delays.
      Parameters:
      jobClasses - the list of job classes this infinite server will handle