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

com.hp.octane.integrations.services.configurationparameters.SendEventsInBulkParameter Maven / Gradle / Ivy

There is a newer version: 2.24.3.5
Show newest version
package com.hp.octane.integrations.services.configurationparameters;

import com.hp.octane.integrations.services.configurationparameters.factory.ConfigurationParameter;
import com.hp.octane.integrations.services.configurationparameters.factory.ConfigurationParameterFactory;

/**
 * Indicate whether to send send aggregated events in one bulk or one-by-one.
 * Sometimes, Octane ignore events in bulk as it doesn't find appropriate context, for example when there is some dependency between two events in the same bulk.
 * This parameter allows sending events one-by-one, and in this way context for dependent event will be created before it reach OCtane
 */
public class SendEventsInBulkParameter implements ConfigurationParameter {
	public static final String KEY = "SEND_EVENTS_IN_BULK";
	private boolean isBulk;
	public static final boolean DEFAULT = true;

	private SendEventsInBulkParameter(boolean isBulk) {
		this.isBulk = isBulk;
	}

	public boolean isBulk() {
		return isBulk;
	}

	public static SendEventsInBulkParameter create(String rawValue) {
		return new SendEventsInBulkParameter(ConfigurationParameterFactory.validateBooleanValue(rawValue,KEY));
	}

	@Override
	public String getKey() {
		return KEY;
	}

	@Override
	public String getRawValue() {
		return Boolean.toString(isBulk);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy