Nothing
###########################################################################/**
# @RdocClass CacheKeyInterface
#
# @title "The CacheKeyInterface class interface"
#
# \description{
# @classhierarchy
# }
#
# @synopsis
#
# \arguments{
# \item{...}{Not used.}
# }
#
# \section{Fields and Methods}{
# @allmethods "public"
# }
#
# @author
#
# @keyword internal
#*/###########################################################################
setConstructorS3("CacheKeyInterface", function(...) {
extend(Interface(), "CacheKeyInterface")
})
###########################################################################/**
# @RdocMethod getCacheKey
#
# @title "Gets a list of cache key items"
#
# \description{
# @get "title" that will be added to other cache key items used to
# generate the cache key.
# }
#
# @synopsis
#
# \arguments{
# \item{...}{Additional named arguments to be appended to the list
# of key items.}
# }
#
# \value{
# Returns a @list of cache items.
# }
#
# \details{
# The default list of cache key items are:
# \itemize{
# \item the class name of the object as a @character string.
# }
#
# Classes extending/implementing this @see "R.oo::Interface" may
# override these items.
# }
#
# @author
#
# \seealso{
# @seeclass
# }
#*/###########################################################################
setMethodS3("getCacheKey", "CacheKeyInterface", function(this, ...) {
list(className=class(this)[1], ...)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.