Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 439
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Class CefWriteHandler

CefBase
   |
   +--CefWriteHandler

   in cef.h

class CefWriteHandler
extends CefBase

Interface the client can implement to provide a custom stream writer. The methods of this class may be called on any thread.


Method Summary
 virtual int Flush()= 0
          Flush the stream.
 virtual int Seek( long offset, int whence )= 0
          Seek to the specified offset position.
 virtual long Tell()= 0
          Return the current offset position.
 virtual size_t Write( const void* ptr, size_t size, size_t n )= 0
          Write raw binary data.
   
Methods inherited from class CefBase
AddRef, Release, GetRefCt
 

Method Detail

Flush

public virtual int Flush()= 0;
Flush the stream.

Seek

public virtual int Seek( long offset, int whence )= 0;
Seek to the specified offset position. |whence| may be any one of SEEK_CUR, SEEK_END or SEEK_SET.

Tell

public virtual long Tell()= 0;
Return the current offset position.

Write

public virtual size_t Write( const void* ptr, size_t size, size_t n )= 0;
Write raw binary data.

 Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 439
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt