V8 API Reference, 7.2.502.16 (for Deno 0.2.4)
v8::String::ExternalStringResource Class Referenceabstract

#include <v8.h>

Inheritance diagram for v8::String::ExternalStringResource:
v8::String::ExternalStringResourceBase

Public Member Functions

 ~ExternalStringResource () override=default
 
virtual const uint16_t * data () const =0
 
virtual size_t length () const =0
 
- Public Member Functions inherited from v8::String::ExternalStringResourceBase
 V8_DEPRECATED ("Use IsCacheable().", virtual bool IsCompressible() const)
 
virtual bool IsCacheable () const
 

Additional Inherited Members

- Protected Member Functions inherited from v8::String::ExternalStringResourceBase
virtual void Dispose ()
 
virtual void Lock () const
 
virtual void Unlock () const
 
 ExternalStringResourceBase (const ExternalStringResourceBase &)=delete
 
void operator= (const ExternalStringResourceBase &)=delete
 

Detailed Description

An ExternalStringResource is a wrapper around a two-byte string buffer that resides outside V8's heap. Implement an ExternalStringResource to manage the life cycle of the underlying buffer. Note that the string data must be immutable.

Definition at line 2695 of file v8.h.

Constructor & Destructor Documentation

◆ ~ExternalStringResource()

v8::String::ExternalStringResource::~ExternalStringResource ( )
overridedefault

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

Member Function Documentation

◆ data()

virtual const uint16_t* v8::String::ExternalStringResource::data ( ) const
pure virtual

The string data from the underlying buffer.

◆ length()

virtual size_t v8::String::ExternalStringResource::length ( ) const
pure virtual

The length of the string. That is, the number of two-byte characters.


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