IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5663


Ignore:
Timestamp:
Dec 2, 2005, 4:29:55 PM (21 years ago)
Author:
jhoblitt
Message:

add ->open_create()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/lib/Nebulous/Client.pod

    r5051 r5663  
    1313    );
    1414
    15     my $fh = $neb->create( "key", 0, "node01", "example" );
     15    my $filename = $neb->create( "key", 0, "node01", "example" );
     16    my $fh = $neb->open_create( "key", 0, "node01", "example" );
    1617    $neb->replicate( "key", "node01" );
    1718    $neb->cull( "key" );
     
    8788=item * create($key, $class, $volume, $comment).
    8889
     90Creates a new storage object.
     91
     92=over 4
     93
     94=item * key
     95
     96The storage object key (name).
     97
     98=item * class
     99
     100The storage class.
     101
     102This parameter is optional.
     103
     104=item * volume
     105
     106The preferred storage location of initial instance.
     107
     108This parameter is optional.
     109
     110=item * comment
     111
     112The storage object comment.
     113
     114This parameter is optional.
     115
     116=back
     117
     118Returns a local filename or C<undef> on failure.
     119
     120
     121=item * open_create($key, $class, $volume, $comment).
     122
    89123Creates and opens new storage object.
    90124
Note: See TracChangeset for help on using the changeset viewer.