blob: 621b15050dd773a454c8aa2f60f170a8406cf630 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 1C-Soft LLC.
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Vladimir Piskarev (1C) - initial API and implementation
*******************************************************************************/
package org.eclipse.handly.internal.examples.lsp;
import java.util.Objects;
import java.util.concurrent.CompletableFuture;
import java.util.function.BooleanSupplier;
import org.eclipse.lsp4j.InitializeResult;
import org.eclipse.lsp4j.services.LanguageServer;
/**
* Represents a connection to a language server.
*/
class ServerConnection
{
final LanguageServer server;
final CompletableFuture<InitializeResult> initializeFuture;
final BooleanSupplier status;
final Runnable closer;
/**
* Constructs a new server connection with the given parameters.
*
* @param server not <code>null</code>
* @param initializeFuture not <code>null</code>
* @param status not <code>null</code>
* @param closer not <code>null</code>
*/
ServerConnection(LanguageServer server,
CompletableFuture<InitializeResult> initializeFuture,
BooleanSupplier status, Runnable closer)
{
this.server = Objects.requireNonNull(server);
this.initializeFuture = Objects.requireNonNull(initializeFuture);
this.status = Objects.requireNonNull(status);
this.closer = Objects.requireNonNull(closer);
}
}