@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface OneToMany
A process annotation which fans out one signal into many.
To receive a signal after all of the Many signals are processed,
use a ManyToOne with a stage after the OneToMany.
To receive a signal after each item of the Many signals are processed,
use a OneToOne (or another OneToMany) with a stage after the OneToMany.
- Author:
- "James X. Nelson (james@wetheinter.net)"