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

org.yamcs.api.Api Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.api;

import com.google.protobuf.Descriptors.MethodDescriptor;
import com.google.protobuf.Descriptors.ServiceDescriptor;
import com.google.protobuf.Message;

public interface Api {

    ServiceDescriptor getDescriptorForType();

    void callMethod(MethodDescriptor method, T ctx, Message request, Observer observer);

    Observer callMethod(MethodDescriptor method, T ctx, Observer observer);

    Message getRequestPrototype(MethodDescriptor method);

    Message getResponsePrototype(MethodDescriptor method);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy