I have a service to read from a store. I created a basic initializer to findAll data to populate a store, and then after I start the service. The service happens to use the store, but no data is in the store when the service accesses it. If I manually call the function in the service after the application has loaded I'm able to get the value. I'm assuming this is because findAll's callback is put on the event queue, and I'm running the service before the event queue removes that storage population event. If this is the case how can I tell Ember to start the service once the Store has been populated?I have a service to read from a store. I create