Package org.yamcs.parameter
Class ParameterRetrievalService
java.lang.Object
com.google.common.util.concurrent.AbstractService
org.yamcs.AbstractYamcsService
org.yamcs.parameter.ParameterRetrievalService
- All Implemented Interfaces:
com.google.common.util.concurrent.Service,YamcsService
Combines retrieval from different sources:
- Parameter Archive
- Replays
- Parameter cache
- Realtime Parameter Archive filler
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.google.common.util.concurrent.Service
com.google.common.util.concurrent.Service.Listener, com.google.common.util.concurrent.Service.State -
Field Summary
Fields inherited from class org.yamcs.AbstractYamcsService
config, log, serviceName, yamcsInstance -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voiddoStart()protected voiddoStop()voidinit(String yamcsInstance, String serviceName, YConfiguration config) Initialize this service.retrieveMulti(List<ParameterWithId> pids, ParameterRetrievalOptions opts, Consumer<List<ParameterValueWithId>> consumer) retrieveScalar(ParameterWithId pid, ParameterRetrievalOptions opts, Consumer<ParameterValueArray> consumer) Retrieves a single scalar parameter or aggregate/array member.retrieveSingle(ParameterWithId pid, ParameterRetrievalOptions opts, Consumer<ParameterValueWithId> consumer) Methods inherited from class org.yamcs.AbstractYamcsService
findStream, getConfig, getYamcsInstanceMethods inherited from class com.google.common.util.concurrent.AbstractService
addListener, awaitRunning, awaitRunning, awaitRunning, awaitTerminated, awaitTerminated, awaitTerminated, doCancelStart, failureCause, isRunning, notifyFailed, notifyStarted, notifyStopped, startAsync, state, stopAsync, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface com.google.common.util.concurrent.Service
addListener, awaitRunning, awaitRunning, awaitRunning, awaitTerminated, awaitTerminated, awaitTerminated, failureCause, isRunning, startAsync, state, stopAsyncMethods inherited from interface org.yamcs.YamcsService
getSpec
-
Constructor Details
-
ParameterRetrievalService
public ParameterRetrievalService()
-
-
Method Details
-
init
public void init(String yamcsInstance, String serviceName, YConfiguration config) throws InitException Description copied from interface:YamcsServiceInitialize this service. This is called before the service is started. All operations should finish fast.- Specified by:
initin interfaceYamcsService- Overrides:
initin classAbstractYamcsService- Parameters:
yamcsInstance- The yamcs instance, ornullif this is a global service.serviceName- The service name.config- The configured arguments for this service. IfYamcsService.getSpec()is implemented then this contains the arguments after being validated (including any defaults).- Throws:
InitException- When something goes wrong during the execution of this method.
-
doStart
protected void doStart()- Specified by:
doStartin classcom.google.common.util.concurrent.AbstractService
-
doStop
protected void doStop()- Specified by:
doStopin classcom.google.common.util.concurrent.AbstractService
-
retrieveScalar
public CompletableFuture<Void> retrieveScalar(ParameterWithId pid, ParameterRetrievalOptions opts, Consumer<ParameterValueArray> consumer) Retrieves a single scalar parameter or aggregate/array member. -
retrieveSingle
public CompletableFuture<Void> retrieveSingle(ParameterWithId pid, ParameterRetrievalOptions opts, Consumer<ParameterValueWithId> consumer) -
retrieveMulti
public CompletableFuture<Void> retrieveMulti(List<ParameterWithId> pids, ParameterRetrievalOptions opts, Consumer<List<ParameterValueWithId>> consumer) -
getParameterCache
-