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
|
module Concurrent
# A submodule for unstable, highly experimental features that are likely to
# change often and which may never become part of the core gem. Also for
# new, experimental version of abstractions already in the core gem.
#
# Most new features should start in this module, clearly indicating the
# experimental and unstable nature of the feature. Once a feature becomes
# more stable and is a candidate for inclusion in the core gem it should
# be moved up to the `Concurrent` module, where it would reside once merged
# into the core gem.
#
# The only exception to this is for features which *replace* features from
# the core gem in ways that are breaking and not backward compatible. These
# features should remain in this module until merged into the core gem. This
# will prevent namespace collisions.
#
# @!macro [attach] edge_warning
# @api Edge
# @note **Edge Feature:** Edge features are under active development and may change frequently. They are expected not to
# keep backward compatibility (there may also lack tests and documentation). Semantic versions will
# be obeyed though. Features developed in `concurrent-ruby-edge` are expected to move
# to `concurrent-ruby` when final.
module Edge
end
end
|