forked from hazelcast/hazelcast-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hazelcast.go
72 lines (61 loc) · 3 KB
/
hazelcast.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved.
//
// Licensed 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.
// Package Hazelcast provides methods for creating Hazelcast clients and client configurations.
package hazelcast
import (
"github.com/hazelcast/go-client/config"
"github.com/hazelcast/go-client/core"
"github.com/hazelcast/go-client/internal"
)
// NewHazelcastClient creates and returns a new IHazelcastInstance.
// IHazelcast instance enables you to do all Hazelcast operations without
// being a member of the cluster. It connects to one of the
// cluster members and delegates all cluster wide operations to it.
// When the connected cluster member dies, client will
// automatically switch to another live member.
func NewHazelcastClient() (IHazelcastInstance, error) {
return NewHazelcastClientWithConfig(config.NewClientConfig())
}
// NewHazelcastClient creates and returns a new IHazelcastInstance with the given config.
// IHazelcast instance enables you to do all Hazelcast operations without
// being a member of the cluster. It connects to one of the
// cluster members and delegates all cluster wide operations to it.
// When the connected cluster member dies, client will
// automatically switch to another live member.
func NewHazelcastClientWithConfig(config *config.ClientConfig) (IHazelcastInstance, error) {
return internal.NewHazelcastClient(config)
}
// NewHazelcsatConfig creates and returns a new ClientConfig.
func NewHazelcastConfig() *config.ClientConfig {
return config.NewClientConfig()
}
// IHazelcastInstance is a Hazelcast instance. Each Hazelcast instance is a member (node) in a cluster.
// Multiple Hazelcast instances can be created.
// Each Hazelcast instance has its own socket, goroutines.
type IHazelcastInstance interface {
// GetMap returns the distributed map instance with the specified name.
GetMap(name string) (core.IMap, error)
// GetDistributedObject returns IDistributedObject created by the service with the specified name.
GetDistributedObject(serviceName string, name string) (core.IDistributedObject, error)
// Shutdown shuts down this IHazelcastInstance.
Shutdown()
// GetCluster returns the ICluster this instance is part of.
// ICluster interface allows you to add listener for membership
// events and learn more about the cluster this Hazelcast
// instance is part of.
GetCluster() core.ICluster
// GetLifecycle returns the lifecycle service for this instance. ILifecycleService allows you
// to listen for the lifecycle events.
GetLifecycle() core.ILifecycle
}