Class NetworkRequestEvent

java.lang.Object
desmoj.core.simulator.NamedObject
desmoj.core.simulator.ModelComponent
desmoj.core.simulator.Schedulable
desmoj.core.simulator.EventAbstract
desmoj.core.simulator.ExternalEvent
cambio.simulator.entities.NamedExternalEvent
cambio.simulator.entities.networking.NetworkRequestEvent
Direct Known Subclasses:
NetworkRequestCanceledEvent, NetworkRequestReceiveEvent, NetworkRequestSendEvent, NetworkRequestTimeoutEvent

public abstract class NetworkRequestEvent extends NamedExternalEvent
Superclass for network events that take care of exactly one traveling Request. It provides its subclasses with references to the traveling request and the IRequestUpdateListener.
Author:
Lion Wagner
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected final Request
     
    protected final IRequestUpdateListener
     

    Fields inherited from class desmoj.core.simulator.EventAbstract

    numberOfEntities

    Fields inherited from class desmoj.core.simulator.Schedulable

    _schedule
  • Constructor Summary

    Constructors
    Constructor
    Description
    NetworkRequestEvent(desmoj.core.simulator.Model model, String name, boolean showInTrace, Request travelingRequest)
    Common constructor that enforces the association of a request with an External Event.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    abstract void
    To be implemented by Subclasses.

    Methods inherited from class cambio.simulator.entities.NamedExternalEvent

    eventRoutine, getPlainName, getQuotedName, getQuotedPlainName, rename

    Methods inherited from class desmoj.core.simulator.ExternalEvent

    clone, schedule, schedule, schedule, schedule, scheduleAfter, scheduleBefore, schedulePreempt

    Methods inherited from class desmoj.core.simulator.EventAbstract

    generateTraceForScheduling, getNumberOfEntities, getRealTimeConstraint, getSchedulingPriority, isExternal, setRealTimeConstraint, setSchedulingPriority

    Methods inherited from class desmoj.core.simulator.Schedulable

    assignReporter, cancel, getCorrespondingReportable, isCurrent, isScheduled, reSchedule, reSchedule, reSchedulePreempt, scheduledNext, setCorrespondingReportable

    Methods inherited from class desmoj.core.simulator.ModelComponent

    current, currentEntity, currentEntityAll, currentEvent, currentlySendDebugNotes, currentlySendTraceNotes, currentModel, currentSimProcess, debugIsOn, debugOff, debugOn, getModel, isExperimentCompatible, isModelCompatible, presentTime, sendDebugNote, sendMessage, sendTraceNote, sendWarning, skipTraceNote, skipTraceNote, traceIsOn, traceOff, traceOn

    Methods inherited from class desmoj.core.simulator.NamedObject

    getName, toString

    Methods inherited from class java.lang.Object

    equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • NetworkRequestEvent

      public NetworkRequestEvent(desmoj.core.simulator.Model model, String name, boolean showInTrace, Request travelingRequest)
      Common constructor that enforces the association of a request with an External Event.
      Parameters:
      travelingRequest - the request that is associated with this request.
  • Method Details

    • onRoutineExecution

      public abstract void onRoutineExecution() throws co.paralleluniverse.fibers.SuspendExecution
      To be implemented by Subclasses.
      Specified by:
      onRoutineExecution in class NamedExternalEvent
      Throws:
      co.paralleluniverse.fibers.SuspendExecution
    • getTravelingRequest

      public Request getTravelingRequest()