Skip to content

Commit 1453ace

Browse files
author
Stefan Fleck
committed
added usage for BackupQueue
1 parent 515b267 commit 1453ace

File tree

3 files changed

+48
-17
lines changed

3 files changed

+48
-17
lines changed

R/BackupQueue.R

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@
99
#' As of now, **the R6 API is still under development and subject to change**.
1010
#' More documentation will follow in the foreseable future.
1111
#'
12+
#' @eval r6_usage(list(BackupQueueIndex, BackupQueueDate, BackupQueueDateTime))
1213
#' @name BackupQueue
14+
#' @aliases BackupQueueIndex BackupQueueDateTime BackupQueueDate
1315
NULL
1416

1517

1618

1719

1820
# BackupQueue -------------------------------------------------------------
1921

20-
#' @rdname BackupQueue
2122
#' @export
2223
BackupQueue <- R6::R6Class(
2324
"BackupQueue",
25+
cloneable = FALSE,
2426
public = list(
2527
initialize = function(
2628
file,
@@ -211,11 +213,11 @@ BackupQueue <- R6::R6Class(
211213

212214
# BackupQueueIndex --------------------------------------------------------
213215

214-
#' @rdname BackupQueue
215216
#' @export
216217
BackupQueueIndex <- R6::R6Class(
217218
"BackupQueueIndex",
218219
inherit = BackupQueue,
220+
cloneable = FALSE,
219221
public = list(
220222

221223
push_backup = function(){
@@ -344,11 +346,11 @@ BackupQueueIndex <- R6::R6Class(
344346

345347
# BackupQueueDateTime -----------------------------------------------------
346348

347-
#' @rdname BackupQueue
348349
#' @export
349350
BackupQueueDateTime <- R6::R6Class(
350351
"BackupQueueDateTime",
351352
inherit = BackupQueue,
353+
cloneable = FALSE,
352354
public = list(
353355
initialize = function(
354356
file,
@@ -593,11 +595,11 @@ BackupQueueDateTime <- R6::R6Class(
593595

594596
# BackupQueueDate ---------------------------------------------------------
595597

596-
#' @rdname BackupQueue
597598
#' @export
598599
BackupQueueDate <- R6::R6Class(
599600
inherit = BackupQueueDateTime,
600601
"BackupQueueDate",
602+
cloneable = FALSE,
601603
public = list(
602604

603605
initialize = function(

man/BackupQueue.Rd

Lines changed: 41 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/rotate.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)