Skip to content

danstocker-legacy/poodle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Poodle

Transport framework

Provides an API for managing service calls and static image loading that is a) evented (based on evan) and b) is consistent with the OOP principles laid down in troop.

Wiki

Reference

Examples

jsFiddle

POSTing to an endpoint:

'/endpoint/path'.toEndpoint().toRequest()
    .setHttpMethod('POST')
    .setParam('param', 'value')
    .toService()
        .callService();

Capturing the service's successful return:

'/endpoint/path'.toEndpoint()
    .subscribeTo(poodle.Service.EVENT_SERVICE_SUCCESS, function (event) {
        console.log("service returned with response", event.responseNode);
    })

Loading a static image:

'/images/foo.jpg'.toImageUrl()
    .loadImage();

Capturing the successful loading of the image into an image element:

'/images/foo.jpg'.toImageUrl()
    .subscribeTo(poodle.Image.EVENT_IMAGE_LOAD_SUCCESS, function (event) {
        console.log("image loaded into", event.imageElement);
    });

About

Transport framework

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •