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

zaber.motion.gateway.SdkEvent Maven / Gradle / Ivy

Go to download

A library that aims to provide easy-to-use API for communication with Zaber devices using Zaber ASCII Protocol.

There is a newer version: 6.7.0
Show newest version
package zaber.motion.gateway;

import com.google.protobuf.Message;

public final class SdkEvent {

    private String event;

    private Message eventData;

    public SdkEvent(String event, Message eventData) {
        this.event = event;
        this.eventData = eventData;
    }

    public String getEventName() {
        return this.event;
    }

    public Message getEventData() {
        return this.eventData;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy