in generators/app/index.js [47:63]
writing() {
var libPath = "REPLACE_SFLIBSPATH";
var isAddNewService = false;
if (this.props.frameworkType == "Reliable Actor Service") {
this.composeWith('azuresfjava:StatefulActor', {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
} else if (this.props.frameworkType == "Reliable Stateless Service") {
this.composeWith('azuresfjava:ReliableStatelessService', {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
} else if (this.props.frameworkType == "Reliable Stateful Service") {
this.composeWith('azuresfjava:ReliableStatefulService', {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
}
}