Schnittstelle IOFlags


public interface IOFlags
  • Feldübersicht

    Felder
    Modifizierer und Typ
    Feld
    Beschreibung
    static final int
    turns on append mode, corresponds to %O_APPEND
    (see the documentation of the UNIX open() syscall)
    static final int
    the mask of the flags that are returned from
    g_io_channel_get_flags()
    static final int
    indicates that the io channel is readable.
    static final int
    indicates that the io channel is seekable,
    i.e. that g_io_channel_seek_position() can be used on it.
    static final int
    indicates that the io channel is writable.
    static final int
    a misspelled version of @G_IO_FLAG_IS_WRITABLE
    that existed before the spelling was fixed in GLib 2.30.
    static final int
    the mask that specifies all the valid flags.
    static final int
    turns on nonblocking mode, corresponds to
    %O_NONBLOCK/%O_NDELAY (see the documentation of the UNIX open()
    syscall)
    static final int
    no special flags set.
    static final int
    the mask of the flags that the user can modify
    with g_io_channel_set_flags()
  • Felddetails

    • NONE

      static final int NONE
      no special flags set. Since: 2.74
      Siehe auch:
    • APPEND

      static final int APPEND
      turns on append mode, corresponds to %O_APPEND
      (see the documentation of the UNIX open() syscall)
      Siehe auch:
    • NONBLOCK

      static final int NONBLOCK
      turns on nonblocking mode, corresponds to
      %O_NONBLOCK/%O_NDELAY (see the documentation of the UNIX open()
      syscall)
      Siehe auch:
    • IS_READABLE

      static final int IS_READABLE
      indicates that the io channel is readable.
      This flag cannot be changed.
      Siehe auch:
    • IS_WRITABLE

      static final int IS_WRITABLE
      indicates that the io channel is writable.
      This flag cannot be changed.
      Siehe auch:
    • IS_WRITEABLE

      static final int IS_WRITEABLE
      a misspelled version of @G_IO_FLAG_IS_WRITABLE
      that existed before the spelling was fixed in GLib 2.30. It is kept
      here for compatibility reasons. Deprecated since 2.30
      Siehe auch:
    • IS_SEEKABLE

      static final int IS_SEEKABLE
      indicates that the io channel is seekable,
      i.e. that g_io_channel_seek_position() can be used on it.
      This flag cannot be changed.
      Siehe auch:
    • MASK

      static final int MASK
      the mask that specifies all the valid flags.
      Siehe auch:
    • GET_MASK

      static final int GET_MASK
      the mask of the flags that are returned from
      g_io_channel_get_flags()
      Siehe auch:
    • SET_MASK

      static final int SET_MASK
      the mask of the flags that the user can modify
      with g_io_channel_set_flags()
      Siehe auch: