Services
Service
@GroupSectionSpec
public ServiceSectionSpec {
...
@OnCreateService
static DataLoader onCreateServices(
SectionContext c,
@Prop Configuration config,
...) {
/**
* onCreateServices() is called only once when the Section is first created.
* In this function you should create and return your service.
**/
return new DataLoaderFactory.createLoader(config);
}
}Last updated