All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.client.base.DataObserver Maven / Gradle / Ivy

The newest version!
package org.yamcs.client.base;

import org.yamcs.api.Observer;

import com.google.protobuf.Any;
import com.google.protobuf.InvalidProtocolBufferException;
import com.google.protobuf.Message;

// Some tricks to unpack data from the Any type without using descriptors
// Only implementing the getMessageClass() is required -- which is already annoying enough.
public interface DataObserver extends Observer {

    Class getMessageClass();

    default void unpackNext(Any data) throws InvalidProtocolBufferException {
        next(data.unpack(getMessageClass()));
    }

    /**
     * Called when the server has confirmed this call.
     */
    void confirm();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy