com.github.rahulsom.grooves.api.events.DeprecatedBy Maven / Gradle / Ivy
package com.github.rahulsom.grooves.api.events;
import com.github.rahulsom.grooves.api.AggregateType;
import rx.Observable;
/**
* Aggregate deprecation event.
*
* The aggregate on which this event is applied is considered the loser of the merge.
* The converse is {@link Deprecates} which needs to be applied to the other aggregate which wins
* the merge.
*
* @param Aggregate this event applies to
* @param The Type for Event's {@link #getId} field
* @param The parent event type
*
* @author Rahul Somasunderam
*/
public interface DeprecatedBy
extends BaseEvent {
Observable> getConverseObservable();
Observable getDeprecatorObservable();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy