GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Mango::GridFS::Reader(3) User Contributed Perl Documentation Mango::GridFS::Reader(3)

Mango::GridFS::Reader - GridFS reader

  use Mango::GridFS::Reader;

  my $reader = Mango::GridFS::Reader->new(gridfs => $gridfs);

Mango::GridFS::Reader reads files from GridFS.

Mango::GridFS::Reader implements the following attributes.

  my $gridfs = $reader->gridfs;
  $reader    = $reader->gridfs(Mango::GridFS->new);

Mango::GridFS object this reader belongs to.

Mango::GridFS::Reader inherits all methods from Mojo::Base and implements the following new ones.

  my $size = $reader->chunk_size;

Chunk size in bytes.

  my $type = $reader->content_type;

Content type of file.

  my $name = $reader->filename;

Name of file.

  my $checksum = $reader->md5;

MD5 checksum for file.

  my $data = $reader->metadata;

Additional information.

  $reader = $reader->open($oid);

Open file. You can also append a callback to perform operation non-blocking.

  $reader->open($oid => sub {
    my ($reader, $err) = @_;
    ...
  });
  Mojo::IOLoop->start unless Mojo::IOLoop->is_running;

  my $chunk = $reader->read;

Read chunk. You can also append a callback to perform operation non-blocking.

  $reader->read(sub {
    my ($reader, $err, $chunk) = @_;
    ...
  });
  Mojo::IOLoop->start unless Mojo::IOLoop->is_running;

  $reader = $reader->seek(13);

Change current position.

  my $size = $reader->size;

Size of entire file in bytes.

  my $data = $reader->slurp;

Slurp all remaining data from file. You can also append a callback to perform operation non-blocking.

  $reader->slurp(sub {
    my ($reader, $err, $data) = @_;
    ...
  });
  Mojo::IOLoop->start unless Mojo::IOLoop->is_running;

  my $pos = $reader->tell;

Current position.

  my $time = $reader->upload_date;

Date file was uploaded.

Mango, Mojolicious::Guides, <http://mojolicio.us>.
2018-03-17 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.