This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setTimeout(function () { | |
this._competitionsEventHandler = this._competitionsService.onCompetitionsChanged.subscribe((competitions) => { | |
this.competitions = competitions; | |
}); | |
}.bind(this), 5000); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// You must import this or the actual feature you require form rxjs to use things like delay(), map(), retry() | |
import 'rxjs/Rx'; | |
... | |
export class Test { | |
constructor(private _http:Http) { | |
_http.get('http://localhost:8080/competitions') | |
.map(res => res.json()) // map to json | |
.delay(2000) // atrificially delay the | |
.retry(3) // attempt to retry x number of times |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class AdminDashboardComponent implements OnDestroy { | |
/** Public data */ | |
competitions:[]; | |
/** Subscriber */ | |
private _competitionsEventHandler:EventEmitter<>; | |
constructor(private _competitionsService:CompetitionsService) { | |
// Get a handle on the event emitter to react on the changes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class CompetitionsService { | |
/** Create a EventEmitter - constructing with true to make async */ | |
onCompetitionsChanged = new EventEmitter<>(true); | |
constructor(private _http:Http) { | |
_http.get('competitions.json') | |
.subscribe( | |
data => { | |
//Broadcast the event to anyone who is listening |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Allows import of other files e.g. const GitHub=imports.github; = github.js */ | |
imports.searchPath.push(imports.ui.appletManager.appletMeta["[email protected]"].path); | |
/** Imports START **/ | |
const Mainloop = imports.mainloop; | |
const Lang = imports.lang; | |
const Gettext = imports.gettext.domain('cinnamon-applets'); | |
const _ = Gettext.gettext; | |
const Cinnamon = imports.gi.Cinnamon; | |
const St = imports.gi.St; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-enforcer-plugin</artifactId> | |
<version>1.0.1</version> | |
<executions> | |
<execution> | |
<id>enforce-versions</id> | |
<goals> | |
<goal>enforce</goal> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dynamicProperty.longValue=12345 | |
dynamicProperty.substitutionProperty=${dynamicProperty.substitutionValue} | |
dynamicProperty.doubleValue=12345.67 | |
dynamicProperty.localTimeValue=12:22:45 | |
dynamicProperty.stringValue=Injected String Value | |
dynamicProperty.substitutionValue=elephant | |
dynamicProperty.bigDecimalValue=20012.56 | |
dynamicProperty.intValue=42 | |
dynamicProperty.localDateValue=2009-06-12 | |
dynamicProperty.periodValue=00:12:22 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component | |
public class AutowiredPropertyBean { | |
private String notAnnotated = "Original value"; | |
@ReloadableProperty("not.in.the.file") | |
private String withDefaultValue = "Default Value"; | |
@ReloadableProperty("not.in.the.file") | |
private int primitiveWithDefaultValue = 55; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" | |
xsi:schemaLocation=" | |
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd | |
"> | |
<import resource="classpath:/spring/spring-defaultConfiguration.xml" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class IcePdfPrinting { | |
public static void main(final String[] args) { | |
PrintingHelper.lookupAllPrinters(); | |
final PrintService[] printers = PrintingHelper.findPrinterOutputLocation("\\\\My_Remote_Or_Locally_Installed_Printer"); | |
if (0 == printers.length || 1 < printers.length) { | |
// Handle | |
} | |
final PrintService printService = printers[0]; | |
PrintingHelper.listsPrinterAttributes(printService); |