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

org.springframework.data.redis.core.script.RedisScript Maven / Gradle / Ivy

There is a newer version: 3.2.5
Show newest version
/*
 * Copyright 2013-2018 the original author or authors.
 *
 * 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.
 */
package org.springframework.data.redis.core.script;

import org.springframework.lang.Nullable;
import org.springframework.util.Assert;

/**
 * A script to be executed using the Redis scripting support available as of
 * version 2.6
 *
 * @author Jennifer Hickey
 * @author Christoph Strobl
 * @param  The script result type. Should be one of Long, Boolean, List, or deserialized value type. Can be
 *          {@litearl null} if the script returns a throw-away status (i.e "OK")
 */
public interface RedisScript {

	/**
	 * @return The SHA1 of the script, used for executing Redis evalsha command.
	 */
	String getSha1();

	/**
	 * @return The script result type. Should be one of Long, Boolean, List, or deserialized value type. {@literal null}
	 *         if the script returns a throw-away status (i.e "OK").
	 */
	@Nullable
	Class getResultType();

	/**
	 * @return The script contents.
	 */
	String getScriptAsString();

	/**
	 * @return {@literal true} if result type is {@literal null} and does not need any further deserialization.
	 * @since 2.0
	 */
	default boolean returnsRawValue() {
		return getResultType() == null;
	}

	/**
	 * Creates new {@link RedisScript} from {@link String}.
	 *
	 * @param script must not be {@literal null}.
	 * @return new instance of {@link RedisScript}.
	 * @since 2.0
	 */
	static  RedisScript of(String script) {
		return new DefaultRedisScript<>(script);
	}

	/**
	 * Creates new {@link RedisScript} from {@link String}.
	 *
	 * @param script must not be {@literal null}.
	 * @param resultType must not be {@literal null}.
	 * @return new instance of {@link RedisScript}.
	 * @since 2.0
	 */
	static  RedisScript of(String script, Class resultType) {

		Assert.notNull(script, "Script must not be null!");
		Assert.notNull(resultType, "ResultType must not be null!");

		return new DefaultRedisScript(script, resultType);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy