grails.gorm.rx.collection.ObservableCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grails-datastore-gorm-rx Show documentation
Show all versions of grails-datastore-gorm-rx Show documentation
GORM - Grails Data Access Framework
The newest version!
package grails.gorm.rx.collection;
import grails.gorm.rx.PersistentObservable;
import rx.Observable;
import java.util.List;
/**
* @author Graeme Rocher
* @since 6.0
*/
public interface ObservableCollection extends PersistentObservable {
/**
* Returns an Observable for the operation
*
* For more information on Observables see the
* ReactiveX documentation.
*
*
* @return the Observable for the operation
*/
Observable> toListObservable();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy