Class: BSV::Network::ARC Deprecated
- Inherits:
-
Object
- Object
- BSV::Network::ARC
- Defined in:
- lib/bsv/network/arc.rb
Overview
Deprecated.
Use Protocols::ARC directly instead. The facade converted clean Result objects into exceptions — every consumer immediately caught them and converted back to data. Use the protocol layer, which returns Result objects natively.
Defined Under Namespace
Classes: DeprecationError
Constant Summary collapse
- MESSAGE =
'BSV::Network::ARC is deprecated. ' \ 'Use BSV::Network::Protocols::ARC directly — it returns Result objects ' \ 'instead of raising exceptions. See BSV::Network::Protocols::ARC for usage.'
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ ARC
constructor
A new instance of ARC.
Constructor Details
#initialize ⇒ ARC
Returns a new instance of ARC.
21 22 23 |
# File 'lib/bsv/network/arc.rb', line 21 def initialize(*) raise DeprecationError, MESSAGE end |
Class Method Details
.default ⇒ Object
17 18 19 |
# File 'lib/bsv/network/arc.rb', line 17 def self.default(**) raise DeprecationError, MESSAGE end |