Top Level Namespace
Defined Under Namespace
Modules: Cassandra
Instance Method Summary collapse
-
#authentication_successful(token) ⇒ void
Called when the authentication is successful.
-
#challenge_response(token) ⇒ String
If the authentication requires multiple challenge/response cycles this method will be called when a challenge is returned by the server.
-
#initial_response ⇒ String
This method must return the initial authentication token to be sent to the server.
Instance Method Details
#authentication_successful(token) ⇒ void
This method must absolutely not block.
This method returns an undefined value.
Called when the authentication is successful.
|
# File 'lib/cassandra/auth.rb', line 85
|
#challenge_response(token) ⇒ String
This method must absolutely not block.
If the authentication requires multiple challenge/response cycles this method will be called when a challenge is returned by the server. A response token must be created and will be sent back to the server.
|
# File 'lib/cassandra/auth.rb', line 74
|
#initial_response ⇒ String
This method must absolutely not block.
This method must return the initial authentication token to be sent to the server.
|
# File 'lib/cassandra/auth.rb', line 65
|