My interface is a curve that changes everytime the server sends to ember a new value of the curve's parameter, and that's happen every second probably.it's very dynamic So i'm trying to receive the data using a websocket from my golang server. to load the data in the store , i'm asked to use the fixture adapter. I opened the socket using:
App.ApplicationRoute = Ember.Route.extend({
activate: function() {
var socket = window.io.connect('http://localhost:8080');
var self = this;
}
});
but i'm asking for the next steps, how to receive the data and load it in the store ?
Thank you!