Package org.eclipse.lsp4j
Interface PartialResultParams
-
- All Known Implementing Classes:
CallHierarchyIncomingCallsParams,CallHierarchyOutgoingCallsParams,CodeActionParams,CodeLensParams,ColorPresentationParams,CompletionParams,DeclarationParams,DefinitionParams,DocumentColorParams,DocumentDiagnosticParams,DocumentHighlightParams,DocumentLinkParams,DocumentSymbolParams,FoldingRangeRequestParams,ImplementationParams,MonikerParams,ReferenceParams,SelectionRangeParams,SemanticTokensDeltaParams,SemanticTokensParams,SemanticTokensRangeParams,TextDocumentPositionAndWorkDoneProgressAndPartialResultParams,TypeDefinitionParams,TypeHierarchySubtypesParams,TypeHierarchySupertypesParams,WorkDoneProgressAndPartialResultParams,WorkspaceDiagnosticParams,WorkspaceSymbolParams
public interface PartialResultParamsA parameter literal used to pass a partial result token.Since 3.15.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.lsp4j.jsonrpc.messages.Either<java.lang.String,java.lang.Integer>getPartialResultToken()An optional token that a server can use to report partial results (e.g.voidsetPartialResultToken(org.eclipse.lsp4j.jsonrpc.messages.Either<java.lang.String,java.lang.Integer> token)An optional token that a server can use to report partial results (e.g.
-
-
-
Method Detail
-
getPartialResultToken
org.eclipse.lsp4j.jsonrpc.messages.Either<java.lang.String,java.lang.Integer> getPartialResultToken()
An optional token that a server can use to report partial results (e.g. streaming) to the client.
-
setPartialResultToken
void setPartialResultToken(org.eclipse.lsp4j.jsonrpc.messages.Either<java.lang.String,java.lang.Integer> token)
An optional token that a server can use to report partial results (e.g. streaming) to the client.
-
-