use of com.orientechnologies.orient.graph.server.command.OServerCommandPostCommandGraph in project orientdb by orientechnologies.
the class OGraphServerHandler method startup.
@Override
public void startup() {
final OServerNetworkListener listener = server.getListenerByProtocol(ONetworkProtocolHttpAbstract.class);
if (listener != null)
listener.registerStatelessCommand(new OServerCommandPostCommandGraph());
if (!enabled)
return;
OGremlinHelper.global().setMaxGraphPool(graphPoolMax).create();
}
Aggregations