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

com.ebay.jetstream.event.processor.esper.annotation.DBInfo Maven / Gradle / Ivy

The newest version!
/*
Pulsar
Copyright (C) 2013-2015 eBay Software Foundation
Licensed under the GPL v2 license.  See LICENSE for full terms.
*/
package com.ebay.jetstream.event.processor.esper.annotation;

public @interface DBInfo {

	public enum WriteMode {INSERT_ONLY, UPSERT, UPDATE_ONLY}
	String table() default "";
	String sumfields() default "";
	String minfields() default "";
	String maxfields() default "";
	WriteMode mode() default WriteMode.UPSERT;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy