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
@SdkPublicApi public interface SdkAutoCloseable extends AutoCloseable
An implementation ofAutoCloseablethat 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 voidclose()
-
-
-
Method Detail
-
close
void close()
- Specified by:
closein interfaceAutoCloseable
-
-