Package org.eclipse.lsp4j
Interface WorkDoneProgressParams
-
- All Known Implementing Classes:
CallHierarchyIncomingCallsParams,CallHierarchyOutgoingCallsParams,CallHierarchyPrepareParams,CodeActionParams,CodeLensParams,ColorPresentationParams,CompletionParams,DeclarationParams,DefinitionParams,DocumentColorParams,DocumentDiagnosticParams,DocumentFormattingParams,DocumentHighlightParams,DocumentLinkParams,DocumentRangeFormattingParams,DocumentSymbolParams,ExecuteCommandParams,FoldingRangeRequestParams,HoverParams,ImplementationParams,InitializeParams,InlayHintParams,InlineValueParams,LinkedEditingRangeParams,MonikerParams,PrepareRenameParams,ReferenceParams,RenameParams,SelectionRangeParams,SemanticTokensDeltaParams,SemanticTokensParams,SemanticTokensRangeParams,SignatureHelpParams,TextDocumentPositionAndWorkDoneProgressAndPartialResultParams,TextDocumentPositionAndWorkDoneProgressParams,TypeDefinitionParams,TypeHierarchyPrepareParams,TypeHierarchySubtypesParams,TypeHierarchySupertypesParams,WorkDoneProgressAndPartialResultParams,WorkspaceDiagnosticParams,WorkspaceSymbolParams
public interface WorkDoneProgressParamsA parameter literal used to pass a work done progress 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>getWorkDoneToken()An optional token that a server can use to report work done progress.voidsetWorkDoneToken(org.eclipse.lsp4j.jsonrpc.messages.Either<java.lang.String,java.lang.Integer> token)An optional token that a server can use to report work done progress.
-
-
-
Method Detail
-
getWorkDoneToken
org.eclipse.lsp4j.jsonrpc.messages.Either<java.lang.String,java.lang.Integer> getWorkDoneToken()
An optional token that a server can use to report work done progress.
-
setWorkDoneToken
void setWorkDoneToken(org.eclipse.lsp4j.jsonrpc.messages.Either<java.lang.String,java.lang.Integer> token)
An optional token that a server can use to report work done progress.
-
-