Interface SessionCreateParams.Tracing.Visitor
-
- All Implemented Interfaces:
public interface SessionCreateParams.Tracing.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitAuto(JsonValue auto)
Default tracing mode for the session. abstract T
visitConfiguration(SessionCreateParams.Tracing.TracingConfiguration configuration)
Granular configuration for tracing. T
unknown(JsonValue json)
Maps an unknown variant of Tracing to a value of type T. -
-
Method Detail
-
visitConfiguration
abstract T visitConfiguration(SessionCreateParams.Tracing.TracingConfiguration configuration)
Granular configuration for tracing.
-
unknown
T unknown(JsonValue json)
Maps an unknown variant of Tracing to a value of type T.
An instance of Tracing can contain an unknown variant if it was deserialized from data that doesn't match any known variant. For example, if the SDK is on an older version than the API, then the API may respond with new variants that the SDK is unaware of.
-
-
-
-