hu.icellmobilsoft.coffee.module.redisstream.config.StreamMessageParameter Maven / Gradle / Ivy
/*-
* #%L
* Coffee
* %%
* Copyright (C) 2020 - 2021 i-Cell Mobilsoft Zrt.
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package hu.icellmobilsoft.coffee.module.redisstream.config;
/**
* Redis Stream message parameters
*
* @author imre.scheffer 1.3.0
*/
public enum StreamMessageParameter {
/**
* Stream message time to live. Value is epoch time millis. If value is < now, then message is expired
*/
TTL(IRedisStreamConstant.Common.DATA_KEY_TTL),
/**
* Logging {@code IRedisStreamConstant.Common#DATA_KEY_FLOW_ID} message extension
*/
FLOW_ID_EXTENSION(IRedisStreamConstant.Common.FLOW_ID_EXTENSION);
String messageKey;
private StreamMessageParameter(String messageKey) {
this.messageKey = messageKey;
}
public String getMessageKey() {
return messageKey;
}
}