This file contains 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
<!DOCTYPE html> | |
<meta charset="utf-8" /> | |
<title>WebSocket Test</title> | |
<script src="https://rawgit.com/kawanet/msgpack-lite/master/dist/msgpack.min.js"></script> | |
<script language="javascript" type="text/javascript"> | |
var wsUri = "wss://localhost:9999/ws"; | |
var output; | |
var websocket; |
This file contains 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
subprojects { | |
apply plugin: 'java' | |
test { | |
maxParallelForks = 1 | |
environment( | |
'GOSHAWKDB_DEFAULT_CLUSTER_HOSTS': 'localhost', | |
'GOSHAWKDB_DEFAULT_CLUSTER_CERT': project(':java-client').projectDir.path.concat('/src/test/resources/defaultClusterCert.pem'), | |
'GOSHAWKDB_DEFAULT_CLIENT_KEYPAIR': project(':java-client').projectDir.path.concat('/src/test/resources/defaultClientKeyPair.pem'), | |
'GOSHAWKDB_DEFAULT_ROOT_NAME': 'test' | |
) |
This file contains 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
package com.rabbitmq.examples; | |
import java.io.IOException; | |
import com.rabbitmq.client.Channel; | |
import com.rabbitmq.client.Connection; | |
import com.rabbitmq.client.ConnectionFactory; | |
import com.rabbitmq.client.ConsumerCancelledException; | |
import com.rabbitmq.client.QueueingConsumerCoDel.Delivery; | |
import com.rabbitmq.client.QueueingConsumerCoDel; |
This file contains 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
// The contents of this file are subject to the Mozilla Public License | |
// Version 1.1 (the "License"); you may not use this file except in | |
// compliance with the License. You may obtain a copy of the License | |
// at http://www.mozilla.org/MPL/ | |
// | |
// Software distributed under the License is distributed on an "AS IS" | |
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See | |
// the License for the specific language governing rights and | |
// limitations under the License. | |
// |
This file contains 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
Before: | |
-module(test_cut). | |
-compile({parse_transform, cut}). | |
-compile(export_all). | |
test_cut() -> | |
F0 = foo(a, b, _, 5+6, _), | |
F1 = F0(_, e), | |
F1(c). |
This file contains 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
-module(test_do). | |
-compile({parse_transform, erlando}). | |
-compile(export_all). | |
test_statet(Arg) -> | |
StateT = statet:new(maybe), %% statet wrapping of maybe monad | |
StateT:execStateT( | |
do([StateT | |
|| S0 <- StateT:get(), |
This file contains 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
Before: | |
-module(test_do). | |
-compile({parse_transform, erlando}). | |
-compile(export_all). | |
test_maybe(Arg) -> | |
do([maybe | |
|| X <- return(Arg), |