The getDoSeqWorkers
function returns the number of
execution workers there are in the currently registered doSeq backend.
A 1
is returned by default.
The getDoSeqRegistered
function returns TRUE if a doSeq backend
has been registered, otherwise FALSE.
The getDoSeqName
function returns the name of the currently
registered doSeq backend. A NULL
is returned if no backend is
registered.
The getDoSeqVersion
function returns the version of the currently
registered doSeq backend. A NULL
is returned if no backend is
registered.
1 2 3 4 5 6 7 |
1 2 3 4 5 6 7 | cat(sprintf('%s backend is registered\n',
if(getDoSeqRegistered()) 'A' else 'No'))
cat(sprintf('Running with %d worker(s)\n', getDoSeqWorkers()))
(name <- getDoSeqName())
(ver <- getDoSeqVersion())
if (getDoSeqRegistered())
cat(sprintf('Currently using %s [%s]\n', name, ver))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.