NAME
OpenTracing::Role::ScopeManager - Role for OpenTracing implementations.
SYNOPSIS
package OpenTracing::Implementation::MyBackendService::ScopeManager;
use Moo;
with 'OpenTracing::Role::ScopeManager'
sub activate_span { ... }
sub get_active_scope { ... }
1;
DESCRIPTION
This is a role for OpenTracing implenetations that are compliant with the OpenTracing::Interface.