Class: CassandraService

Inherits:
Object
  • Object
show all
Includes:
AbstractedCassandraRepository
Defined in:
lib/cassandra/cassandra_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from AbstractedCassandraRepository

#create, #delete, #find_all, #find_by_id, #save, #update

Constructor Details

#initializeCassandraService

Returns a new instance of CassandraService.



12
13
14
15
# File 'lib/cassandra/cassandra_service.rb', line 12

def initialize
	puts 'init cassandra'
   self.cassandra_cluster = Cassandra.cluster
end

Instance Attribute Details

#cassandra_clusterObject

Returns the value of attribute cassandra_cluster.



10
11
12
# File 'lib/cassandra/cassandra_service.rb', line 10

def cassandra_cluster
  @cassandra_cluster
end

Instance Method Details

#startObject



17
18
19
20
21
22
23
# File 'lib/cassandra/cassandra_service.rb', line 17

def start
	puts 'start cassandra, create cluster'
	if !cassandra_cluster
   	cassandra_cluster = Cassandra.cluster
   end
   cassandra_cluster
end

#stopObject



25
26
27
28
29
30
31
# File 'lib/cassandra/cassandra_service.rb', line 25

def stop
	puts 'stop cassandra'
	if cassandra_cluster
		puts 'closing'
   	cassandra_cluster.close
   end
end