1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/address.r
\name{address}
\alias{address}
\title{Form an Address/Endpoint}
\usage{
address(host, port, transport = "tcp")
}
\arguments{
\item{host}{The host ip address or url.}
\item{port}{A port; necessary for all transports except ipc.}
\item{transport}{The transport protocol. Choices are "inproc", "ipc", "tcp", and
"pgm"/"epgm" for local in-process (inter-thread), local
inter-process, tcp, and pgm, respectively.}
}
\value{
An address, for use with pbdZMQ functions.
}
\description{
A notationally convenient function for forming addresses/endpoints.
It's a simple wrapper around the \code{paste0()} function.
}
\examples{
address("localhost", 55555)
}
\seealso{
\code{\link{zmq.bind}}
}
\author{
Drew Schmidt
}
|