Uses of Interface
com.framed.core.EventBus
Packages that use EventBus
Package
Description
-
Uses of EventBus in com.framed.cdss
Constructors in com.framed.cdss with parameters of type EventBusModifierConstructorDescriptionprotectedActor(EventBus eventBus, String id, List<Map<String, String>> firingRules, List<String> inputChannels, List<String> outputChannels) Constructs anActorthat subscribes to the giveninputChannels, evaluates the providedfiringRules, and optionally exposesoutputChannels. -
Uses of EventBus in com.framed.cdss.actors
Constructors in com.framed.cdss.actors with parameters of type EventBusModifierConstructorDescriptionDislocationClassificationActor(EventBus eventBus, String id, String spo2TrendChannel, String etCO2LimitChannel, String sfLimitChannel, String outputChannel) Constructs anActorthat subscribes to the giveninputChannels, evaluates the providedfiringRules, and optionally exposesoutputChannels.HeartrateClassificationActor(EventBus eventBus, String id, String etCO2TrendChannel, String hrLimitChannel, String outputChannel) Constructs anActorthat subscribes to the giveninputChannels, evaluates the providedfiringRules, and optionally exposesoutputChannels.LimitClassificationActor(EventBus eventBus, String id, org.json.JSONArray firingRules, org.json.JSONArray inputChannels, org.json.JSONArray outputChannels, org.json.JSONObject limits) Constructs aLimitClassifier.RespiratoryRateEstimationActor(EventBus eventBus, String id, String etco2Channel, org.json.JSONArray outputChannels, int windowSize, double riseSlopeMin, double fallSlopeMin, double minBreathIntervalSec, int historySeconds, boolean useEMA, double emaAlpha, boolean useHampel, int hampelWindow, double hampelK) Creates a respiratory rate estimator actor that detects breaths from an EtCO₂ waveform using a robust slope-based algorithm with optional smoothing and outlier suppression.RRMismatchClassificationActor(EventBus eventBus, String id, String rrEstimationChannel, String rrSettingsChannel, org.json.JSONArray outputChannels, int varLimit) SFComputationActor(EventBus eventBus, String id, String spo2Channel, String fio2Channel, String outputChannel) TrendClassificationActor(EventBus eventBus, String id, org.json.JSONArray firingRules, org.json.JSONArray inputChannels, org.json.JSONArray outputChannels, org.json.JSONObject windowSizes, org.json.JSONObject persistWindows, org.json.JSONObject deltas, String direction) Constructs aTrendClassifierthat warns on decreasing trends using regression slope, with configurable persistence. -
Uses of EventBus in com.framed.cdss.utils
Methods in com.framed.cdss.utils with parameters of type EventBusModifier and TypeMethodDescriptionstatic voidCDSSUtils.publishResult(EventBus eventBus, DateTimeFormatter formatter, Object warnValue, String id, List<String> outputChannels) -
Uses of EventBus in com.framed.communicator.driver.parser
Constructors in com.framed.communicator.driver.parser with parameters of type EventBus -
Uses of EventBus in com.framed.communicator.driver.parser.medibus
Constructors in com.framed.communicator.driver.parser.medibus with parameters of type EventBusModifierConstructorDescriptionMedibusRealTimeParser(EventBus eventBus, int waveFormType, org.json.JSONArray devices) MedibusSlowParser(EventBus eventBus, org.json.JSONArray devices) -
Uses of EventBus in com.framed.communicator.driver.parser.viatom
Constructors in com.framed.communicator.driver.parser.viatom with parameters of type EventBus -
Uses of EventBus in com.framed.communicator.driver.protocol
Constructors in com.framed.communicator.driver.protocol with parameters of type EventBus -
Uses of EventBus in com.framed.communicator.driver.protocol.medibus
Constructors in com.framed.communicator.driver.protocol.medibus with parameters of type EventBusModifierConstructorDescriptionMedibusFramer(Consumer<byte[]> frameHandler, EventBus eventBus, String deviceID) MedibusProtocol(String id, String portName, int baudRate, int dataBits, int stopBits, int waveFormType, boolean realTime, boolean slowData, String multiplier, EventBus eventBus) -
Uses of EventBus in com.framed.communicator.driver.protocol.medibus.utils
Methods in com.framed.communicator.driver.protocol.medibus.utils with parameters of type EventBusModifier and TypeMethodDescriptionstatic voidParsingUtils.readRealtimeConfigResponse(byte[] packetData, EventBus eventBus, String id) -
Uses of EventBus in com.framed.communicator.io
Constructors in com.framed.communicator.io with parameters of type EventBus -
Uses of EventBus in com.framed.communicator.io.parsed
Constructors in com.framed.communicator.io.parsed with parameters of type EventBusModifierConstructorDescriptionMedibusParsedWriter(String path, EventBus eventBus, org.json.JSONArray devices) -
Uses of EventBus in com.framed.communicator.io.raw
Constructors in com.framed.communicator.io.raw with parameters of type EventBusModifierConstructorDescriptionRawByteWriter(String path, EventBus eventBus, org.json.JSONArray devices) -
Uses of EventBus in com.framed.core
Fields in com.framed.core declared as EventBusModifier and TypeFieldDescriptionprotected EventBusService.eventBusThe event bus used for communication between components.Constructors in com.framed.core with parameters of type EventBus -
Uses of EventBus in com.framed.core.local
Classes in com.framed.core.local that implement EventBusModifier and TypeClassDescriptionclassA local implementation of theEventBusinterface for message-based communication between components within the same JVM. -
Uses of EventBus in com.framed.core.remote
Classes in com.framed.core.remote that implement EventBusModifier and TypeClassDescriptionclass -
Uses of EventBus in com.framed.orchestrator
Methods in com.framed.orchestrator with parameters of type EventBusModifier and TypeMethodDescriptionstatic ServiceFactory.instantiate(org.json.JSONObject config, EventBus eventBus) Instantiates aServiceimplementation based on the provided configuration and event bus.Constructors in com.framed.orchestrator with parameters of type EventBus -
Uses of EventBus in com.framed.streamer.dispatcher
Constructors in com.framed.streamer.dispatcher with parameters of type EventBusModifierConstructorDescriptionDispatcher(EventBus eventBus, org.json.JSONArray devices) FfillDispatcher(EventBus eventBus, org.json.JSONArray devices, Long frequencyMillis) InfluxDispatcher(EventBus eventBus, org.json.JSONArray devices, String url, String token, String org, String bucket) JsonlDispatcher(EventBus eventBus, org.json.JSONArray devices, String path, String fileName)