method

new

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: RotationCoordinator
new(&secret_generator) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/messages/rotation_coordinator.rb, line 10
      def initialize(&secret_generator)
        raise ArgumentError, "A secret generator block is required" unless secret_generator
        @secret_generator = secret_generator
        @rotate_options = []
        @on_rotation = nil
        @codecs = {}
      end
Register or log in to add new notes.