Skip navigation links
org.netbeans.lib.v8debug/1 1.40

V8 Debugging Protocol Library
Under Development

The lib.v8debug API provides Java APIs representing the V8 debugging protocol.

See: Description

V8 Debugging Protocol Library 
Package Description
org.netbeans.lib.v8debug  
org.netbeans.lib.v8debug.commands  
org.netbeans.lib.v8debug.connection  
org.netbeans.lib.v8debug.events  
org.netbeans.lib.v8debug.vars  

The lib.v8debug API provides Java APIs representing the V8 debugging protocol. It contains both client-side and server-side communication support.

What is New (see all changes)?

Use Cases

Client Usage

Use org.netbeans.lib.v8debug.connection.ClientConnection class to create a client debugger connection. The library does not contain any threads, call ClientConnection.runEventLoop() in an application thread to execute the event loop that distributes the debugger events via ClientConnection.Listener listener. Use ClientConnection.send() to send any debugger requests.

Server Usage

Use org.netbeans.lib.v8debug.connection.ServerConnection class to create a server debugger. The library does not contain any threads, call ServerConnection.runConnectionLoop() in an application thread to accept a client connection and receive debugging requests via ServerConnection.Listener listener. Use ServerConnection.send() to send any debugger event.

Exported Interfaces

This table lists all of the module exported APIs with defined stability classifications. It is generated based on answers to questions about the architecture of the module. Read them all...
Group of java interfaces
Interface NameIn/OutStabilitySpecified in What Document?
v8debugLibExportedUnder Development .../overview-summary.html

Implementation Details

Where are the sources for the module?

The sources for the module are in the Apache Git repositories or in the GitHub repositories.

What do other modules need to do to declare a dependency on this one, in addition to or instead of a plain module dependency?
This module does not have any additional dependencies.

Read more about the implementation in the answers to architecture questions.

Skip navigation links
org.netbeans.lib.v8debug/1 1.40