Class: SDM::SnapshotWorkflowAssignments
- Inherits:
-
Object
- Object
- SDM::SnapshotWorkflowAssignments
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotWorkflowAssignments exposes the read only methods of the WorkflowAssignments service for historical queries.
Instance Method Summary collapse
-
#initialize(workflow_assignments) ⇒ SnapshotWorkflowAssignments
constructor
A new instance of SnapshotWorkflowAssignments.
-
#list(filter, *args, deadline: nil) ⇒ Object
Lists existing workflow assignments.
Constructor Details
#initialize(workflow_assignments) ⇒ SnapshotWorkflowAssignments
Returns a new instance of SnapshotWorkflowAssignments.
4336 4337 4338 |
# File 'lib/svc.rb', line 4336 def initialize(workflow_assignments) @workflow_assignments = workflow_assignments end |
Instance Method Details
#list(filter, *args, deadline: nil) ⇒ Object
Lists existing workflow assignments.
4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 |
# File 'lib/svc.rb', line 4341 def list( filter, *args, deadline: nil ) return @workflow_assignments.list( filter, *args, deadline: deadline, ) end |