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

« back to all changes in this revision

Viewing changes to man/gSocketSetBlocking.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{gSocketSetBlocking}
 
2
\name{gSocketSetBlocking}
 
3
\title{gSocketSetBlocking}
 
4
\description{Sets the blocking mode of the socket. In blocking mode
 
5
all operations block until they succeed or there is an error. In
 
6
non-blocking mode all functions return results immediately or
 
7
with a \code{G_IO_ERROR_WOULD_BLOCK} error.}
 
8
\usage{gSocketSetBlocking(object, blocking)}
 
9
\arguments{
 
10
\item{\verb{object}}{a \code{\link{GSocket}}.}
 
11
\item{\verb{blocking}}{Whether to use blocking I/O or not.}
 
12
}
 
13
\details{All sockets are created in blocking mode. However, note that the
 
14
platform level socket is always non-blocking, and blocking mode
 
15
is a GSocket level feature.
 
16
  Since 2.22}
 
17
\author{Derived by RGtkGen from GTK+ documentation}
 
18
\keyword{internal}