Class OpenWFE::NoOperationParticipant
In: lib/openwfe/participants/participants.rb
Parent: Object

The NoOperationParticipant immediately replies to the engine upon receiving a workitem.

Is used in testing. Could also be useful during the ‘development’ phase of a business process, as an empty placeholder.

Methods

consume  

Included Modules

LocalParticipant

Public Instance methods

Simply discards the incoming workitem

[Source]

     # File lib/openwfe/participants/participants.rb, line 239
239:         def consume (workitem)
240: 
241:             reply_to_engine workitem
242:         end

[Validate]