a ruby workflow engine
doc source download 日本語
  • Documentation

Expressions

  • add_branches
    • add_branch
  • apply
  • await
  • cancel_process
    • terminate
    • kill_process
  • command
    • skip
    • back
    • jump
    • rewind
    • continue
    • break
    • stop
    • over
    • reset
  • concurrence
  • concurrent_iterator
    • citerator
  • cron
    • every
  • cursor
    • loop
    • repeat
  • define
    • process_definition
    • workflow_definition
  • echo
  • equals
  • error
  • filter
  • forget
  • given
  • if
  • inc
    • dec
    • increment
    • decrement
    • push
    • pop
  • iterator
  • let
  • listen
    • receive
    • intercept
  • lose
  • noop
  • on_error
  • once
    • when
    • as_soon_as
  • participant
  • read
  • redo
  • ref
  • registerp
  • reserve
  • restore
    • set_fields
  • save
  • sequence
    • let
  • set
    • rset
    • unset
  • stall
  • subprocess
  • that
    • of
  • undo
    • cancel
    • kill
  • unregisterp
  • wait
    • sleep

More

  • quickstart
  • presentations
  • resources
  • users

Meta

  • source
  • download
  • blog
  • mailing list
  • continuous integration
  • IRC
  • on ohloh

Search

save

Saves the current workitem fields into a variable or into a field.

              save :to_field => 'old_workitem'
                # or
              save :to => 'f:old_workitem'
                #
                # saves a copy of the fields of the current workitem into itself,
                # in the field named 'old_workitem'
            
              save :to_variable => '/wix'
                # or
              save :to => 'v:/wix'
                #
                # saves a copy of the current workitem in the varialbe 'wix' at
                # the root of the process
            

See also the ‘restore’ expression (Ruote::Exp::RestoreExpression).

doc issue reporting | doc source | created with nanoc and syntax highlighter © 2005-2013 the ruote team