Skip to content

Commit

Permalink
update graal(mars + link)
Browse files Browse the repository at this point in the history
  • Loading branch information
kosyloa committed Nov 8, 2023
1 parent b7e5add commit f1e8a5f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
10 changes: 7 additions & 3 deletions DXFeedFramework.xcodeproj/xcshareddata/xcschemes/Tools.xcscheme
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
isEnabled = "NO">
</CommandLineArgument>
<CommandLineArgument
argument = "Connect demo.dxfeed.com:7300 TimeAndSale &quot;ipf[https://demo:[email protected]/ipf?TYPE=STOCK&amp;compression=zip],APPL&quot;"
isEnabled = "NO">
argument = "Connect demo.dxfeed.com:7300 TimeAndSale &quot;ipf[https://demo:[email protected]/ipf?TYPE=STOCK&amp;compression=zip],APPL&quot; -p monitoring.stat=1s"
isEnabled = "YES">
</CommandLineArgument>
<CommandLineArgument
argument = "Connect demo.dxfeed.com:7300 candle AAPL -f 2012-05-26-14:15:00"
Expand All @@ -97,7 +97,11 @@
</CommandLineArgument>
<CommandLineArgument
argument = "Connect demo.dxfeed.com:7300 candle AAPL{=2d} -f 0"
isEnabled = "YES">
isEnabled = "NO">
</CommandLineArgument>
<CommandLineArgument
argument = "connect &quot;dxlink:wss://demo.dxfeed.com/dxlink-ws&quot; Quote AAPL -p dxfeed.experimental.dxlink.enable=true"
isEnabled = "NO">
</CommandLineArgument>
<CommandLineArgument
argument = "LatencyTest mddqa.in.devexperts.com:7400 TimeAndSale ETH/USD:GDAX"
Expand Down
4 changes: 4 additions & 0 deletions Samples/Tools/ConnectTool.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ Where:
func execute() {
isQuite = arguments.isQuite

try? arguments.properties.forEach { key, value in
try? SystemProperty.setProperty(key, value)
}

if let tapeFile = arguments.tape {
outputEndpoint = try? DXEndpoint
.builder()
Expand Down
3 changes: 3 additions & 0 deletions Samples/Tools/DumpTool.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ class DumpTool: ToolsCommand {
isQuite = arguments.isQuite

do {
try arguments.properties.forEach { key, value in
try SystemProperty.setProperty(key, value)
}
let inputEndpoint = try DXEndpoint
.builder()
.withRole(.streamFeed)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repositories {
}
}

def native_version = '1.0.6'
def native_version = '1.1.0'
def name = 'graal-native-sdk'
dependencies {
implementation(group: 'com.dxfeed', name: "${name}", version: "${native_version}", classifier: 'aarch64-osx', ext: 'zip')
Expand Down

0 comments on commit f1e8a5f

Please sign in to comment.