blob: eb494658b7561b893f7d52764964e81998a43de2 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2016 TypeFox and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
******************************************************************************/
package org.eclipse.lsp4j.jsonrpc;
import org.eclipse.lsp4j.jsonrpc.messages.Message;
public interface MessageConsumer {
/**
* Consume a single message.
*
* @throws MessageIssueException when an issue is found that prevents further processing of the message
* @throws JsonRpcException when accessing the JSON-RPC communication channel fails
*/
void consume(Message message) throws MessageIssueException, JsonRpcException;
}