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

org.cg.eventbus.ICallback Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
/**
 * 
 */
package org.cg.eventbus;

/**
 * @author yanlinwang
 *
 */
public interface ICallback {
	
	public class Response {
		long offset;
		int partition;
		String topic;
		public long getOffset() {
			return offset;
		}
		public void setOffset(long offset) {
			this.offset = offset;
		}
		public int getPartition() {
			return partition;
		}
		public void setPartition(int partition) {
			this.partition = partition;
		}
		public String getTopic() {
			return topic;
		}
		public void setTopic(String topic) {
			this.topic = topic;
		}
		@Override
		public String toString() {
			return "Response [offset=" + offset + ", partition=" + partition
					+ ", topic=" + topic + "]";
		}	

	}
	
	public void onCompletion(Response response, java.lang.Exception exception); 

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy