Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 657 Bytes

system-methods.md

File metadata and controls

48 lines (31 loc) · 657 Bytes

System Methods

CobinhoodRx.System.getSystemTime()

Get system time as Unix timestamp.

Parameters

Parameter Type Example
none - -

Return Type

Observable<SystemTime>

Example

cobinhoodRx.Trade.
	.subscribe(
		console.log(data);
	});

CobinhoodRx.System.getSystemInfo()

Get system info.

Parameters

Parameter Type Example
none - -

Return Type

Observable<SystemInfo>

Example

cobinhoodRx.System.getSystemInfo()
    .subscribe(
        console.log(data);
    });