glibmm  2.32.0
Public Member Functions | Static Public Member Functions | Protected Member Functions | Related Functions
Gio::UnixOutputStream Class Reference

UnixOutputStream implements OutputStream for writing to a a unix file descriptor, including asynchronous operations. More...

#include <giomm/unixoutputstream.h>

Inheritance diagram for Gio::UnixOutputStream:
Inheritance graph
[legend]

List of all members.

Public Member Functions

virtual ~UnixOutputStream ()
GUnixOutputStream* gobj ()
 Provides access to the underlying C GObject.
const GUnixOutputStream* gobj () const
 Provides access to the underlying C GObject.
GUnixOutputStream* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
void set_close_fd (bool close_fd=true)
 Sets whether the file descriptor of stream shall be closed when the stream is closed.
bool get_close_fd () const
 Returns whether the file descriptor of stream will be closed when the stream is closed.
int get_fd () const
 Return the UNIX file descriptor that the stream writes to.
Glib::PropertyProxy_ReadOnly< int > property_fd () const
 The file descriptor to write to.
Glib::PropertyProxy< bool > property_close_fd ()
 Whether to close the file descriptor when the stream is closed.
Glib::PropertyProxy_ReadOnly
< bool > 
property_close_fd () const
 Whether to close the file descriptor when the stream is closed.

Static Public Member Functions

static Glib::RefPtr
< UnixOutputStream
create (int fd, bool close_fd)

Protected Member Functions

 UnixOutputStream (int fd, bool close_fd)

Related Functions

(Note that these are not member functions.)

Glib::RefPtr
< Gio::UnixOutputStream
wrap (GUnixOutputStream* object, bool take_copy=false)
 A Glib::wrap() method for this object.

Detailed Description

UnixOutputStream implements OutputStream for writing to a a unix file descriptor, including asynchronous operations.

The file descriptor much be selectable, so it doesn't work with opened files.

Since glibmm 2.16:

Constructor & Destructor Documentation

Gio::UnixOutputStream::UnixOutputStream ( int  fd,
bool  close_fd 
) [explicit, protected]

Member Function Documentation

static Glib::RefPtr<UnixOutputStream> Gio::UnixOutputStream::create ( int  fd,
bool  close_fd 
) [static]

Returns whether the file descriptor of stream will be closed when the stream is closed.

Since glibmm 2.20:
Returns:
true if the file descriptor is closed when done.

Return the UNIX file descriptor that the stream writes to.

Since glibmm 2.20:
Returns:
The file descriptor of stream.
GUnixOutputStream* Gio::UnixOutputStream::gobj ( ) [inline]

Provides access to the underlying C GObject.

Reimplemented from Gio::OutputStream.

const GUnixOutputStream* Gio::UnixOutputStream::gobj ( ) const [inline]

Provides access to the underlying C GObject.

Reimplemented from Gio::OutputStream.

GUnixOutputStream* Gio::UnixOutputStream::gobj_copy ( )

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

Reimplemented from Gio::OutputStream.

Whether to close the file descriptor when the stream is closed.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.

Whether to close the file descriptor when the stream is closed.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.

The file descriptor to write to.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
void Gio::UnixOutputStream::set_close_fd ( bool  close_fd = true)

Sets whether the file descriptor of stream shall be closed when the stream is closed.

Since glibmm 2.20:
Parameters:
close_fdtrue to close the file descriptor when done.

Friends And Related Function Documentation

Glib::RefPtr< Gio::UnixOutputStream > wrap ( GUnixOutputStream *  object,
bool  take_copy = false 
) [related]

A Glib::wrap() method for this object.

Parameters:
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
Returns:
A C++ instance that wraps this C instance.