Package software.amazon.awssdk.utils
Interface SdkAutoCloseable
-
- All Superinterfaces:
AutoCloseable
- All Known Subinterfaces:
CachedSupplier.PrefetchStrategy
- All Known Implementing Classes:
AttributeMap
,CachedSupplier
,InputStreamSubscriber
,Lazy
,NonBlocking
,OneCallerBlocks
public interface SdkAutoCloseable extends AutoCloseable
An implementation ofAutoCloseable
that does not throw any checked exceptions. The SDK does not throw checked exceptions in its close() methods, so users of the SDK should not need to handle them.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
-
-
-
Method Detail
-
close
void close()
- Specified by:
close
in interfaceAutoCloseable
-
-