com.flash3388.flashlib.net.hfcs.DataReceivedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flashlib.net.core Show documentation
Show all versions of flashlib.net.core Show documentation
Robotics development framework (flashlib.net.core)
The newest version!
package com.flash3388.flashlib.net.hfcs;
import com.flash3388.flashlib.util.unique.InstanceId;
import com.notifier.Event;
public class DataReceivedEvent implements Event {
private final InstanceId mSender;
private final InType mType;
private final T mData;
public DataReceivedEvent(InstanceId sender, InType type, T data) {
mSender = sender;
mType = type;
mData = data;
}
public InstanceId getSender() {
return mSender;
}
public InType getType() {
return mType;
}
public T getData() {
return mData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy