| Chromium Embedded Framework (CEF)
    128.0.1+gc234e7f+chromium-128.0.6613.7
    | 
Class representing a message. More...
#include "include/cef_process_message.h"
 
  
| Public Member Functions | |
| virtual bool | IsValid ()=0 | 
| Returns true if this object is valid.  More... | |
| virtual bool | IsReadOnly ()=0 | 
| Returns true if the values of this object are read-only.  More... | |
| virtual CefRefPtr< CefProcessMessage > | Copy ()=0 | 
| Returns a writable copy of this object.  More... | |
| virtual CefString | GetName ()=0 | 
| Returns the message name.  More... | |
| virtual CefRefPtr< CefListValue > | GetArgumentList ()=0 | 
| Returns the list of arguments.  More... | |
| virtual CefRefPtr< CefSharedMemoryRegion > | GetSharedMemoryRegion ()=0 | 
| Returns the shared memory region.  More... | |
|  Public Member Functions inherited from CefBaseRefCounted | |
| virtual void | AddRef () const =0 | 
| Called to increment the reference count for the object.  More... | |
| virtual bool | Release () const =0 | 
| Called to decrement the reference count for the object.  More... | |
| virtual bool | HasOneRef () const =0 | 
| Returns true if the reference count is 1.  More... | |
| virtual bool | HasAtLeastOneRef () const =0 | 
| Returns true if the reference count is at least 1.  More... | |
| Static Public Member Functions | |
| static CefRefPtr< CefProcessMessage > | Create (const CefString &name) | 
| Create a new CefProcessMessage object with the specified name.  More... | |
| Additional Inherited Members | |
|  Protected Member Functions inherited from CefBaseRefCounted | |
| virtual | ~CefBaseRefCounted () | 
Class representing a message.
Can be used on any process and thread.
| 
 | pure virtual | 
Returns a writable copy of this object.
Returns nullptr when message contains a shared memory region.
| 
 | static | 
Create a new CefProcessMessage object with the specified name.
| 
 | pure virtual | 
Returns the list of arguments.
Returns nullptr when message contains a shared memory region.
| 
 | pure virtual | 
Returns the message name.
| 
 | pure virtual | 
Returns the shared memory region.
Returns nullptr when message contains an argument list.
| 
 | pure virtual | 
Returns true if the values of this object are read-only.
Some APIs may expose read-only objects.
| 
 | pure virtual | 
Returns true if this object is valid.
Do not call any other methods if this function returns false.