~ubuntu-branches/ubuntu/trusty/rgtk2/trusty

« back to all changes in this revision

Viewing changes to man/gFileCreateAsync.Rd

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2010-11-03 11:35:46 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20101103113546-a7fi7jdxdebp0tw1
Tags: 2.20.1-1
* New upstream release

* debian/control: Set (Build-)Depends: to current R version
* debian/control: Set Standards-Version: to current version 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
\alias{gFileCreateAsync}
 
2
\name{gFileCreateAsync}
 
3
\title{gFileCreateAsync}
 
4
\description{Asynchronously creates a new file and returns an output stream for writing to it.
 
5
The file must not already exist.}
 
6
\usage{gFileCreateAsync(object, flags = "G_FILE_CREATE_NONE", io.priority = 0, cancellable = NULL, callback, user.data = NULL)}
 
7
\arguments{
 
8
\item{\verb{object}}{input \code{\link{GFile}}.}
 
9
\item{\verb{flags}}{a set of \code{\link{GFileCreateFlags}}.}
 
10
\item{\verb{io.priority}}{the I/O priority 
 
11
    of the request.}
 
12
\item{\verb{cancellable}}{optional \code{\link{GCancellable}} object, \code{NULL} to ignore.}
 
13
\item{\verb{callback}}{a \code{\link{GAsyncReadyCallback}} to call when the request is satisfied}
 
14
\item{\verb{user.data}}{the data to pass to callback function}
 
15
}
 
16
\details{For more details, see \code{\link{gFileCreate}} which is
 
17
the synchronous version of this call.
 
18
  
 
19
When the operation is finished, \code{callback} will be called. You can then call
 
20
\code{\link{gFileCreateFinish}} to get the result of the operation.}
 
21
\author{Derived by RGtkGen from GTK+ documentation}
 
22
\keyword{internal}