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

ai.vespa.schemals.context.EventExecuteCommandContext Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
package ai.vespa.schemals.context;

import org.eclipse.lsp4j.ExecuteCommandParams;

import ai.vespa.schemals.SchemaMessageHandler;
import ai.vespa.schemals.index.SchemaIndex;
import ai.vespa.schemals.schemadocument.SchemaDocumentScheduler;

/**
 * EventExecuteCommandContext
 */
public class EventExecuteCommandContext extends EventContext {

    public final ExecuteCommandParams params;

	public EventExecuteCommandContext(SchemaDocumentScheduler scheduler, SchemaIndex schemaIndex,
			SchemaMessageHandler messageHandler, ExecuteCommandParams params) {
		super(scheduler, schemaIndex, messageHandler);
        this.params = params;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy