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

com.tapstream.sdk.ActivityEventSource Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
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