logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Mango::GridFS::Writer - GridFS writer

Attributes

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

   chunk_size
         my $size = $writer->chunk_size;
         $writer  = $writer->chunk_size(1024);

       Chunk size in bytes, defaults to 261120 (255KB).

   content_type
         my $type = $writer->content_type;
         $writer  = $writer->content_type('text/plain');

       Content type of file.

   filename
         my $name = $writer->filename;
         $writer  = $writer->filename('foo.txt');

       Name of file.

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

       Mango::GridFS object this writer belongs to.

   metadata
         my $data = $writer->metadata;
         $writer  = $writer->metadata({foo => 'bar'});

       Additional information.

Description

       Mango::GridFS::Writer writes files to GridFS.

Methods

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

   close
         my $oid = $writer->close;

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

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

   is_closed
         my $success = $writer->is_closed;

       Check if file has been closed.

   write
         $writer = $writer->write('hello world!');

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

         $writer->write('hello world!' => sub {
           my ($writer, $err) = @_;
           ...
         });
         Mojo::IOLoop->start unless Mojo::IOLoop->is_running;

Name

       Mango::GridFS::Writer - GridFS writer

See Also

       Mango, Mojolicious::Guides, <http://mojolicio.us>.

perl v5.30.3                                       2020-06-05                         Mango::GridFS::Writer(3pm)

Synopsis

         use Mango::GridFS::Writer;

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

See Also