Renamed example.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b9801c69 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b9801c69 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b9801c69 Branch: refs/heads/ignite-7777 Commit: b9801c69610896bbe80d2a4be7d679fdd8f0fe58 Parents: abfc585 Author: Pavel Petroshenko <[email protected]> Authored: Sun May 27 16:29:25 2018 -0700 Committer: Pavel Petroshenko <[email protected]> Committed: Sun May 27 16:29:25 2018 -0700 ---------------------------------------------------------------------- .../nodejs/examples/FailOverExample.js | 54 -------------------- .../nodejs/examples/FailoverExample.js | 54 ++++++++++++++++++++ 2 files changed, 54 insertions(+), 54 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/b9801c69/modules/platforms/nodejs/examples/FailOverExample.js ---------------------------------------------------------------------- diff --git a/modules/platforms/nodejs/examples/FailOverExample.js b/modules/platforms/nodejs/examples/FailOverExample.js deleted file mode 100644 index beb545b..0000000 --- a/modules/platforms/nodejs/examples/FailOverExample.js +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (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.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -const IgniteClient = require('apache-ignite-client'); -const IgniteClientConfiguration = IgniteClient.IgniteClientConfiguration; - -// This example demonstrates failover behavior of the client -// - configures the client to connect to a set of nodes -// - connects to a node -// - if connection is broken, the client automatically tries to reconnect to another node -// - if no specified nodes are available, stops the client -async function connectClient() { - const igniteClient = new IgniteClient(onStateChanged); - try { - const igniteClientConfiguration = new IgniteClientConfiguration( - '127.0.0.1:10800', '127.0.0.1:10801', '127.0.0.1:10802'); - // connect to Ignite a node - await igniteClient.connect(igniteClientConfiguration); - } - catch (err) { - console.log(err.message); - } -} - -function onStateChanged(state, reason) { - if (state === IgniteClient.STATE.CONNECTED) { - console.log('Client is started'); - } - else if (state === IgniteClient.STATE.CONNECTING) { - console.log('Client is connecting'); - } - else if (state === IgniteClient.STATE.DISCONNECTED) { - console.log('Client is stopped'); - if (reason) { - console.log(reason); - } - } -} - -connectClient(); \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b9801c69/modules/platforms/nodejs/examples/FailoverExample.js ---------------------------------------------------------------------- diff --git a/modules/platforms/nodejs/examples/FailoverExample.js b/modules/platforms/nodejs/examples/FailoverExample.js new file mode 100644 index 0000000..beb545b --- /dev/null +++ b/modules/platforms/nodejs/examples/FailoverExample.js @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (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.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +const IgniteClient = require('apache-ignite-client'); +const IgniteClientConfiguration = IgniteClient.IgniteClientConfiguration; + +// This example demonstrates failover behavior of the client +// - configures the client to connect to a set of nodes +// - connects to a node +// - if connection is broken, the client automatically tries to reconnect to another node +// - if no specified nodes are available, stops the client +async function connectClient() { + const igniteClient = new IgniteClient(onStateChanged); + try { + const igniteClientConfiguration = new IgniteClientConfiguration( + '127.0.0.1:10800', '127.0.0.1:10801', '127.0.0.1:10802'); + // connect to Ignite a node + await igniteClient.connect(igniteClientConfiguration); + } + catch (err) { + console.log(err.message); + } +} + +function onStateChanged(state, reason) { + if (state === IgniteClient.STATE.CONNECTED) { + console.log('Client is started'); + } + else if (state === IgniteClient.STATE.CONNECTING) { + console.log('Client is connecting'); + } + else if (state === IgniteClient.STATE.DISCONNECTED) { + console.log('Client is stopped'); + if (reason) { + console.log(reason); + } + } +} + +connectClient(); \ No newline at end of file
