| Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte | 
|---|---|
| License | LGPL-2.1 | 
| Maintainer | Iñaki García Etxebarria | 
| Safe Haskell | None | 
| Language | Haskell2010 | 
GI.Gio.Objects.FilterInputStream
Description
Base class for input stream implementations that perform some kind of filtering operation on a base stream. Typical examples of filtering operations are character set conversion, compression and byte order flipping.
Synopsis
- newtype FilterInputStream = FilterInputStream (ManagedPtr FilterInputStream)
 - class (GObject o, IsDescendantOf FilterInputStream o) => IsFilterInputStream o
 - toFilterInputStream :: (MonadIO m, IsFilterInputStream o) => o -> m FilterInputStream
 - filterInputStreamGetBaseStream :: (HasCallStack, MonadIO m, IsFilterInputStream a) => a -> m InputStream
 - filterInputStreamGetCloseBaseStream :: (HasCallStack, MonadIO m, IsFilterInputStream a) => a -> m Bool
 - filterInputStreamSetCloseBaseStream :: (HasCallStack, MonadIO m, IsFilterInputStream a) => a -> Bool -> m ()
 - constructFilterInputStreamBaseStream :: (IsFilterInputStream o, MonadIO m, IsInputStream a) => a -> m (GValueConstruct o)
 - getFilterInputStreamBaseStream :: (MonadIO m, IsFilterInputStream o) => o -> m InputStream
 - constructFilterInputStreamCloseBaseStream :: (IsFilterInputStream o, MonadIO m) => Bool -> m (GValueConstruct o)
 - getFilterInputStreamCloseBaseStream :: (MonadIO m, IsFilterInputStream o) => o -> m Bool
 - setFilterInputStreamCloseBaseStream :: (MonadIO m, IsFilterInputStream o) => o -> Bool -> m ()
 
Exported types
newtype FilterInputStream Source #
Memory-managed wrapper type.
Constructors
| FilterInputStream (ManagedPtr FilterInputStream) | 
Instances
| Eq FilterInputStream Source # | |
Defined in GI.Gio.Objects.FilterInputStream Methods (==) :: FilterInputStream -> FilterInputStream -> Bool # (/=) :: FilterInputStream -> FilterInputStream -> Bool #  | |
| IsGValue FilterInputStream Source # | Convert   | 
Defined in GI.Gio.Objects.FilterInputStream  | |
| ManagedPtrNewtype FilterInputStream Source # | |
Defined in GI.Gio.Objects.FilterInputStream Methods toManagedPtr :: FilterInputStream -> ManagedPtr FilterInputStream #  | |
| TypedObject FilterInputStream Source # | |
Defined in GI.Gio.Objects.FilterInputStream  | |
| GObject FilterInputStream Source # | |
Defined in GI.Gio.Objects.FilterInputStream  | |
| HasParentTypes FilterInputStream Source # | |
Defined in GI.Gio.Objects.FilterInputStream  | |
| type ParentTypes FilterInputStream Source # | |
Defined in GI.Gio.Objects.FilterInputStream  | |
class (GObject o, IsDescendantOf FilterInputStream o) => IsFilterInputStream o Source #
Type class for types which can be safely cast to FilterInputStream, for instance with toFilterInputStream.
Instances
| (GObject o, IsDescendantOf FilterInputStream o) => IsFilterInputStream o Source # | |
Defined in GI.Gio.Objects.FilterInputStream  | |
toFilterInputStream :: (MonadIO m, IsFilterInputStream o) => o -> m FilterInputStream Source #
Cast to FilterInputStream, for types for which this is known to be safe. For general casts, use castTo.
Methods
Overloaded methods
getBaseStream
filterInputStreamGetBaseStream Source #
Arguments
| :: (HasCallStack, MonadIO m, IsFilterInputStream a) | |
| => a | 
  | 
| -> m InputStream | Returns: a   | 
Gets the base stream for the filter stream.
getCloseBaseStream
filterInputStreamGetCloseBaseStream Source #
Arguments
| :: (HasCallStack, MonadIO m, IsFilterInputStream a) | |
| => a | 
  | 
| -> m Bool | Returns:   | 
Returns whether the base stream will be closed when stream is
 closed.
setCloseBaseStream
filterInputStreamSetCloseBaseStream Source #
Arguments
| :: (HasCallStack, MonadIO m, IsFilterInputStream a) | |
| => a | 
  | 
| -> Bool | 
  | 
| -> m () | 
Sets whether the base stream will be closed when stream is closed.
Properties
baseStream
No description available in the introspection data.
constructFilterInputStreamBaseStream :: (IsFilterInputStream o, MonadIO m, IsInputStream a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “base-stream” property. This is rarely needed directly, but it is used by new.
getFilterInputStreamBaseStream :: (MonadIO m, IsFilterInputStream o) => o -> m InputStream Source #
Get the value of the “base-stream” property.
 When overloading is enabled, this is equivalent to
get filterInputStream #baseStream
closeBaseStream
No description available in the introspection data.
constructFilterInputStreamCloseBaseStream :: (IsFilterInputStream o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “close-base-stream” property. This is rarely needed directly, but it is used by new.
getFilterInputStreamCloseBaseStream :: (MonadIO m, IsFilterInputStream o) => o -> m Bool Source #
Get the value of the “close-base-stream” property.
 When overloading is enabled, this is equivalent to
get filterInputStream #closeBaseStream
setFilterInputStreamCloseBaseStream :: (MonadIO m, IsFilterInputStream o) => o -> Bool -> m () Source #
Set the value of the “close-base-stream” property.
 When overloading is enabled, this is equivalent to
setfilterInputStream [ #closeBaseStream:=value ]