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

redis.clients.jedis.graph.Header Maven / Gradle / Ivy

package redis.clients.jedis.graph;

import java.util.List;

/**
 * Query response header interface. Represents the response schema (column names and types).
 * @deprecated Redis Graph support is deprecated.
 */
@Deprecated
public interface Header {

  List getSchemaTypes();

  List getSchemaNames();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy