#include <v8.h>
Definition at line 3099 of file v8.h.
◆ ~ExternalStringResourceBase()
◆ ExternalStringResourceBase() [1/2]
◆ ExternalStringResourceBase() [2/2]
◆ Dispose()
Internally V8 will call this Dispose method when the external string resource is no longer needed. The default implementation will use the delete operator. This method can be overridden in subclasses to control how allocated external string resources are disposed.
Definition at line 3123 of file v8.h.
◆ IsCacheable()
virtual bool IsCacheable |
( |
| ) |
const |
|
inlinevirtual |
If a string is cacheable, the value returned by ExternalStringResource::data() may be cached, otherwise it is not expected to be stable beyond the current top-level task.
Definition at line 3108 of file v8.h.
◆ Lock()
virtual void Lock |
( |
| ) |
const |
|
inlineprotectedvirtual |
For a non-cacheable string, the value returned by |ExternalStringResource::data()| has to be stable between |Lock()| and |Unlock()|, that is the string must behave as is |IsCacheable()| returned true.
These two functions must be thread-safe, and can be called from anywhere. They also must handle lock depth, in the sense that each can be called several times, from different threads, and unlocking should only happen when the balance of Lock() and Unlock() calls is 0.
Definition at line 3136 of file v8.h.
◆ operator=()
◆ Unlock()
virtual void Unlock |
( |
| ) |
const |
|
inlineprotectedvirtual |
Unlocks the string.
Definition at line 3141 of file v8.h.
◆ internal::ExternalString
friend class internal::ExternalString |
|
friend |
◆ internal::ScopedExternalStringLock
friend class internal::ScopedExternalStringLock |
|
friend |
◆ v8::String
The documentation for this class was generated from the following file: