@@ -3,7 +3,7 @@ setOldClass("DSLiteServer")
33
44# ' Class DSLiteConnection.
55# '
6- # ' An DSLiteServer connection implementing the DataSHIELD Interface (DSI) \code{\link{DSConnection-class}}.
6+ # ' A DSLiteServer connection implementing the DataSHIELD Interface (DSI) \code{\link[DSI] {DSConnection-class}}.
77# '
88# ' @import methods
99# ' @import DSI
@@ -15,7 +15,7 @@ setClass("DSLiteConnection", contains = "DSConnection", slots = list(name = "cha
1515# '
1616# ' Connect to a DSLite server, with provided datasets symbol names.
1717# '
18- # ' @param drv \code{\link {DSLiteDriver-class }} class object.
18+ # ' @param drv \code{\linkS4class {DSLiteDriver}} class object.
1919# ' @param name Name of the connection, which must be unique among all the DataSHIELD connections.
2020# ' @param url A R symbol that refers to a \link{DSLiteServer} object that holds the datasets of interest. The
2121# ' option "datashield.env" can be used to specify where to search for this symbol value. If not specified,
@@ -24,7 +24,7 @@ setClass("DSLiteConnection", contains = "DSConnection", slots = list(name = "cha
2424# ' @param profile Name of the profile that will be given to the DSLiteServer configuration. Make different DSLiteServers to support different configurations.
2525# ' @param ... Unused, needed for compatibility with generic.
2626# '
27- # ' @return A \code{\link {DSLiteConnection-class }} object.
27+ # ' @return A \code{\linkS4class {DSLiteConnection}} object.
2828# '
2929# ' @import methods
3030# ' @export
@@ -44,7 +44,7 @@ setMethod("dsConnect", "DSLiteDriver",
4444# '
4545# ' No operation due to the DSLiteServer nature.
4646# '
47- # ' @param conn \code{\link {DSLiteConnection-class }} class object
47+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
4848# '
4949# ' @import methods
5050# ' @export
@@ -54,7 +54,7 @@ setMethod("dsKeepAlive", "DSLiteConnection", function(conn) {})
5454# '
5555# ' Save the session in a local file if requested.
5656# '
57- # ' @param conn \code{\link {DSLiteConnection-class }} class object
57+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
5858# ' @param save Save the DataSHIELD R session with provided ID (must be a character string).
5959# '
6060# ' @import methods
@@ -68,7 +68,7 @@ setMethod("dsDisconnect", "DSLiteConnection", function(conn, save = NULL) {
6868# '
6969# ' List dataset names living in the DSLite server for performing DataSHIELD operations.
7070# '
71- # ' @param conn \code{\link {DSLiteConnection-class }} class object
71+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
7272# '
7373# ' @return The fully qualified names of the tables.
7474# '
@@ -82,7 +82,7 @@ setMethod("dsListTables", "DSLiteConnection", function(conn) {
8282# '
8383# ' List resource names living in the DSLite server for performing DataSHIELD operations.
8484# '
85- # ' @param conn \code{\link {DSLiteConnection-class }} class object
85+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
8686# '
8787# ' @return The fully qualified names of the resources.
8888# '
@@ -96,7 +96,7 @@ setMethod("dsListResources", "DSLiteConnection", function(conn) {
9696# '
9797# ' Verify dataset exists and can be accessible for performing DataSHIELD operations.
9898# '
99- # ' @param conn \code{\link {DSLiteConnection-class }} class object.
99+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object.
100100# ' @param table The fully qualified name of the dataset.
101101# '
102102# ' @return TRUE if dataset exists.
@@ -111,7 +111,7 @@ setMethod("dsHasTable", "DSLiteConnection", function(conn, table) {
111111# '
112112# ' Verify resource exists and can be accessible for performing DataSHIELD operations.
113113# '
114- # ' @param conn \code{\link {DSLiteConnection-class }} class object.
114+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object.
115115# ' @param resource The fully qualified name of the resource.
116116# '
117117# ' @return TRUE if dataset exists.
@@ -126,7 +126,7 @@ setMethod("dsHasResource", "DSLiteConnection", function(conn, resource) {
126126# '
127127# ' No asynchronicity on any DataSHIELD operations.
128128# '
129- # ' @param conn \code{\link {DSLiteConnection-class }} class object
129+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
130130# '
131131# ' @return The named list of logicals detailing the asynchronicity support.
132132# '
@@ -140,7 +140,7 @@ setMethod("dsIsAsync", "DSLiteConnection", function(conn) {
140140# '
141141# ' List symbols living in the DataSHIELD R session.
142142# '
143- # ' @param conn \code{\link {DSLiteConnection-class }} class object
143+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
144144# '
145145# ' @return A character vector.
146146# '
@@ -154,7 +154,7 @@ setMethod("dsListSymbols", "DSLiteConnection", function(conn) {
154154# '
155155# ' Remoe a symbol living in the DataSHIELD R session.
156156# '
157- # ' @param conn \code{\link {DSLiteConnection-class }} class object
157+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
158158# ' @param symbol Name of the R symbol.
159159# '
160160# ' @import methods
@@ -167,7 +167,7 @@ setMethod("dsRmSymbol", "DSLiteConnection", function(conn, symbol) {
167167# '
168168# ' List profiles defined in the DataSHIELD configuration.
169169# '
170- # ' @param conn \code{\link {DSLiteConnection-class }} class object
170+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
171171# '
172172# ' @return A list containing the "available" character vector of profile names and the "current" profile (in case a default one was assigned).
173173# '
@@ -181,7 +181,7 @@ setMethod("dsListProfiles", "DSLiteConnection", function(conn) {
181181# '
182182# ' List methods defined in the DataSHIELD configuration.
183183# '
184- # ' @param conn \code{\link {DSLiteConnection-class }} class object
184+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
185185# ' @param type Type of the method: "aggregate" (default) or "assign".
186186# '
187187# ' @return A data frame.
@@ -200,7 +200,7 @@ setMethod("dsListMethods", "DSLiteConnection", function(conn, type = "aggregate"
200200# '
201201# ' List packages defined in the DataSHIELD configuration.
202202# '
203- # ' @param conn \code{\link {DSLiteConnection-class }} class object
203+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
204204# '
205205# ' @return A data frame.
206206# '
@@ -216,7 +216,7 @@ setMethod("dsListPackages", "DSLiteConnection", function(conn) {
216216# '
217217# ' List workspaces saved in the data repository.
218218# '
219- # ' @param conn \code{\link {DSLiteConnection-class }} class object
219+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
220220# '
221221# ' @return A data frame.
222222# '
@@ -230,7 +230,7 @@ setMethod("dsListWorkspaces", "DSLiteConnection", function(conn) {
230230# '
231231# ' Save workspace on the data repository.
232232# '
233- # ' @param conn \code{\link {DSLiteConnection-class }} class object
233+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
234234# ' @param name Name of the workspace.
235235# '
236236# ' @import methods
@@ -243,7 +243,7 @@ setMethod("dsSaveWorkspace", "DSLiteConnection", function(conn, name) {
243243# '
244244# ' Restore workspace from the data repository.
245245# '
246- # ' @param conn \code{\link {DSLiteConnection-class }} class object
246+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
247247# ' @param name Name of the workspace.
248248# '
249249# ' @import methods
@@ -256,7 +256,7 @@ setMethod("dsRestoreWorkspace", "DSLiteConnection", function(conn, name) {
256256# '
257257# ' Remove a workspace on the data repository.
258258# '
259- # ' @param conn \code{\link {DSLiteConnection-class }} class object
259+ # ' @param conn \code{\linkS4class {DSLiteConnection}} class object
260260# ' @param name Name of the workspace.
261261# '
262262# ' @import methods
@@ -269,7 +269,7 @@ setMethod("dsRmWorkspace", "DSLiteConnection", function(conn, name) {
269269# '
270270# ' Assign a DSLite dataset in the DataSHIELD R session.
271271# '
272- # ' @param conn \code{\link {DSLiteConnection-class }} object.
272+ # ' @param conn \code{\linkS4class {DSLiteConnection}} object.
273273# ' @param symbol Name of the R symbol.
274274# ' @param table Fully qualified name of a dataset living in the DSLite server.
275275# ' @param variables The variable names to be filtered in.
@@ -280,7 +280,7 @@ setMethod("dsRmWorkspace", "DSLiteConnection", function(conn, name) {
280280# ' @param async Whether the result of the call should be retrieved asynchronously. When TRUE (default) the calls are parallelized over
281281# ' the connections, when the connection supports that feature, with an extra overhead of requests.
282282# '
283- # ' @return A \code{\link {DSLiteResult-class }} object.
283+ # ' @return A \code{\linkS4class {DSLiteResult}} object.
284284# '
285285# ' @import methods
286286# ' @export
@@ -300,13 +300,13 @@ setMethod("dsAssignTable", "DSLiteConnection", function(conn, symbol, table, var
300300# '
301301# ' Assign a DSLite resource in the DataSHIELD R session.
302302# '
303- # ' @param conn \code{\link {DSLiteConnection-class }} object.
303+ # ' @param conn \code{\linkS4class {DSLiteConnection}} object.
304304# ' @param symbol Name of the R symbol.
305305# ' @param resource Fully qualified name of a resource object living in the DSLite server.
306306# ' @param async Whether the result of the call should be retrieved asynchronously. When TRUE (default) the calls are parallelized over
307307# ' the connections, when the connection supports that feature, with an extra overhead of requests.
308308# '
309- # ' @return A \code{\link {DSLiteResult-class }} object.
309+ # ' @return A \code{\linkS4class {DSLiteResult}} object.
310310# '
311311# ' @import methods
312312# ' @export
@@ -323,13 +323,13 @@ setMethod("dsAssignResource", "DSLiteConnection", function(conn, symbol, resourc
323323# '
324324# ' Assign a result of the execution of an expression in the DataSHIELD R session.
325325# '
326- # ' @param conn \code{\link {DSLiteConnection-class }} object.
326+ # ' @param conn \code{\linkS4class {DSLiteConnection}} object.
327327# ' @param symbol Name of the R symbol.
328328# ' @param expr A R expression with allowed assign functions calls.
329329# ' @param async Whether the result of the call should be retrieved asynchronously. When TRUE (default) the calls are parallelized over
330330# ' the connections, when the connection supports that feature, with an extra overhead of requests.
331331# '
332- # ' @return A \code{\link {DSLiteResult-class }} object.
332+ # ' @return A \code{\linkS4class {DSLiteResult}} object.
333333# '
334334# ' @import methods
335335# ' @export
@@ -343,7 +343,7 @@ setMethod("dsAssignExpr", "DSLiteConnection", function(conn, symbol, expr, async
343343# ' Aggregate some data from the DataSHIELD R session using a valid R expression. The aggregation expression
344344# ' must satisfy the data repository's DataSHIELD configuration.
345345# '
346- # ' @param conn \code{\link {DSLiteConnection-class }} object.
346+ # ' @param conn \code{\linkS4class {DSLiteConnection}} object.
347347# ' @param expr Expression to evaluate.
348348# ' @param async Whether the result of the call should be retrieved asynchronously. When TRUE (default) the calls are parallelized over
349349# ' the connections, when the connection supports that feature, with an extra overhead of requests.
0 commit comments