com.tapstream.sdk.ActivityEventSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tapstream-core Show documentation
Show all versions of tapstream-core Show documentation
This library contains the building blocks for a Tapstream Java SDK
package com.tapstream.sdk;
public class ActivityEventSource {
public interface ActivityListener {
void onOpen();
}
protected ActivityListener listener;
public ActivityEventSource() {
listener = null;
}
public void setListener(ActivityListener listener) {
this.listener = listener;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy