Package com.cosmicpush.app.resources.api.userevent

Examples of com.cosmicpush.app.resources.api.userevent.UserEventDelegate


  public Response sendUserEvent(UserEventPush push) throws Exception {

    ApiRequest apiRequest = new ApiRequest(apiClient, push, inetAddress);
    config.getApiRequestStore().create(apiRequest);

    UserEventDelegate delegate = new UserEventDelegate(config.getObjectMapper(), config.getApiRequestStore(), account, apiClient, apiRequest, push);
    new Thread(delegate).start();

    return buildResponse(apiRequest);
  }
View Full Code Here

TOP

Related Classes of com.cosmicpush.app.resources.api.userevent.UserEventDelegate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.