Sha256: e47141b453057b6559d775f408fa1e3a8cd86bdb6f71104342309465590d15a2

Contents?: true

Size: 1.61 KB

Versions: 94

Compression:

Stored size: 1.61 KB

Contents

module Fox
  #
  # A FXMemoryStream is a stream that reads from (or writes to) a buffer of bytes in memory.
  # That buffer may "owned" by either the application code or by the stream object itself.
  # In the latter case, the stream object will dispose of the buffer contents when the stream
  # is closed.
  #
  class FXMemoryStream < FXStream

    attr_reader :position

    #
    # Construct a new memory stream with given container object.
    # The container object is an object that will itself not be
    # saved to or loaded from the stream, but which may be referenced
    # by other objects. These references will be properly saved and restored.
    #
    # ==== Parameters:
    #
    # +cont+:: the container object, or +nil+ if there is none {FXObject}.
    #
    def initialize(cont=nil) # :yields: theMemoryStream
    end

    #
    # Open memory stream for reading or writing.
    # Returns +true+ if successful, +false+ otherwise.
    #
    # ==== Parameters:
    #
    # +save_or_load+:: access mode, either +FXStreamSave+ or +FXStreamLoad+ [Integer]
    # +data+::         memory buffer to be used for the stream, or +nil+ if the stream object should allocate its own buffer [String]
    #
    def open(save_or_load, data); end

    #
    # Take buffer away from stream, thus transferring ownership of the buffer
    # from the stream object to the caller.
    # Returns a string containing the buffer contents.
    #
    def takeBuffer; end

    #
    # Give buffer (a string) to this stream, thus transferring ownership of
    # the buffer from the caller to the stream object.
    #
    def giveBuffer(buffer); end
  end
end

Version data entries

94 entries across 94 versions & 1 rubygems

Version Path
fxruby-1.6.48 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.48-x64-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.48-x64-mingw-ucrt rdoc-sources/FXMemoryStream.rb
fxruby-1.6.48-x86-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.47 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.47-x64-mingw-ucrt rdoc-sources/FXMemoryStream.rb
fxruby-1.6.47-x64-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.47-x86-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.46 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.46-x64-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.46-x64-mingw-ucrt rdoc-sources/FXMemoryStream.rb
fxruby-1.6.46-x86-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.45 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.45-x64-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.45-x64-mingw-ucrt rdoc-sources/FXMemoryStream.rb
fxruby-1.6.45-x86-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.44 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.44-x64-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.44-x86-mingw32 rdoc-sources/FXMemoryStream.rb
fxruby-1.6.43 rdoc-sources/FXMemoryStream.rb