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

com.tinkerpop.gremlin.server.handler.StateKey Maven / Gradle / Ivy

The newest version!
package com.tinkerpop.gremlin.server.handler;

import com.tinkerpop.gremlin.driver.MessageSerializer;
import com.tinkerpop.gremlin.server.op.session.Session;
import io.netty.util.AttributeKey;

/**
 * @author Stephen Mallette (http://stephen.genoprime.com)
 */
public class StateKey {
    public static final AttributeKey SERIALIZER = AttributeKey.valueOf("serializer");
    public static final AttributeKey USE_BINARY = AttributeKey.valueOf("useBinary");
    public static final AttributeKey SESSION = AttributeKey.valueOf("session");
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy