v8  3.11.10 (node 0.8.28)
V8 is Google's open source JavaScript engine
String::ExternalAsciiStringResource Class Referenceabstract

#include <v8.h>

Inheritance diagram for String::ExternalAsciiStringResource:
Collaboration diagram for String::ExternalAsciiStringResource:

Public Member Functions

virtual ~ExternalAsciiStringResource ()
 
virtual const char * data () const =0
 
virtual size_t length () const =0
 
- Public Member Functions inherited from String::ExternalStringResourceBase
virtual ~ExternalStringResourceBase ()
 

Protected Member Functions

 ExternalAsciiStringResource ()
 
- Protected Member Functions inherited from String::ExternalStringResourceBase
 ExternalStringResourceBase ()
 
virtual void Dispose ()
 

Detailed Description

An ExternalAsciiStringResource is a wrapper around an ASCII string buffer that resides outside V8's heap. Implement an ExternalAsciiStringResource to manage the life cycle of the underlying buffer. Note that the string data must be immutable and that the data must be strict (7-bit) ASCII, not Latin-1 or UTF-8, which would require special treatment internally in the engine and, in the case of UTF-8, do not allow efficient indexing. Use String::New or convert to 16 bit data for non-ASCII.

Definition at line 1165 of file v8.h.

Constructor & Destructor Documentation

◆ ~ExternalAsciiStringResource()

virtual ~ExternalAsciiStringResource ( )
inlinevirtual

Override the destructor to manage the life cycle of the underlying buffer.

Definition at line 1172 of file v8.h.

◆ ExternalAsciiStringResource()

ExternalAsciiStringResource ( )
inlineprotected

Definition at line 1178 of file v8.h.

Member Function Documentation

◆ data()

virtual const char* data ( ) const
pure virtual

The string data from the underlying buffer.

Implemented in ExternalAsciiStringResourceImpl.

◆ length()

virtual size_t length ( ) const
pure virtual

The number of ASCII characters in the string.

Implemented in ExternalAsciiStringResourceImpl.


The documentation for this class was generated from the following file: