com.tinkerpop.rexster.protocol.msg.RexProMessageMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-protocol Show documentation
Show all versions of rexster-protocol Show documentation
RexPro is a binary protocol for Rexster graph server.
package com.tinkerpop.rexster.protocol.msg;
import java.util.HashMap;
import java.util.Map;
/**
* HashMap with a msgpack template
*
* @author Blake Eggleston (bdeggleston.github.com)
*/
public class RexProMessageMeta extends HashMap {
public RexProMessageMeta() { }
public RexProMessageMeta(int i) { super(i); }
public RexProMessageMeta(int i, float v) { super(i, v); }
public RexProMessageMeta(Map extends String, ?> map) { super(map); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy