All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cookingfox.lapasse.api.facade.RxFacade Maven / Gradle / Ivy

There is a newer version: 0.5.6
Show newest version
package com.cookingfox.lapasse.api.facade;

import com.cookingfox.lapasse.api.command.bus.RxCommandBus;
import com.cookingfox.lapasse.api.state.State;
import com.cookingfox.lapasse.api.state.observer.RxStateObserver;

/**
 * Extends the facade with Rx functionality.
 *
 * @param  The concrete type of the state object.
 */
public interface RxFacade extends
        Facade,
        RxCommandBus,
        RxStateObserver {
}