One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| { | |
| "$schema" : "http://json-schema.org/draft-04/schema#", | |
| "type" : "array", | |
| "items" : { | |
| "definitions" : { | |
| "org.apache.camel.model.language.ConstantExpression" : { | |
| "anyOf" : [ { | |
| "type" : "string" | |
| }, { | |
| "type" : "object", |
| //---- Angular 2 Http Service Example ---- | |
| import {Injectable} from "@angular/core"; | |
| import {Http, Headers} from "@angular/http"; | |
| const AWS = require("aws-sdk"); | |
| @Injectable() | |
| export class ApiGatewayService { | |
| constructor(private http:Http){ |
| /** | |
| @class BroadcastChannel | |
| A simple BroadcastChannel polyfill that works with all major browsers. | |
| Please refer to the official MDN documentation of the Broadcast Channel API. | |
| @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/Broadcast_Channel_API">Broadcast Channel API on MDN</a> | |
| @author Alessandro Piana | |
| @version 0.0.6 | |
| */ | |
| /* |
| #include <chrono> | |
| #include <memory> | |
| #include <string> | |
| #include <atomic> | |
| #include <thread> | |
| #include <iostream> | |
| #include <v8.h> | |
| int main() | |
| { |