public static interface HollowProducer.Publisher
Modifier and Type | Method and Description |
---|---|
default void |
publish(HollowProducer.Blob blob)
Deprecated.
|
default void |
publish(HollowProducer.PublishArtifact publishArtifact)
Publish the blob specified to this publisher's blobstore.
|
@Deprecated default void publish(HollowProducer.Blob blob)
Publisher#publish(PublishArtifact)
instead.Publish the blob specified to this publisher's blobstore.
It is guaranteed that blob
was created by calling one of
HollowProducer.BlobStager.openSnapshot(long)
, HollowProducer.BlobStager.openDelta(long, long)
, or
HollowProducer.BlobStager.openReverseDelta(long, long)
on this publisher.
blob
- the blob to publishdefault void publish(HollowProducer.PublishArtifact publishArtifact)
It is guaranteed that blob
was created by calling one of
HollowProducer.BlobStager.openSnapshot(long)
, HollowProducer.BlobStager.openDelta(long, long)
,
HollowProducer.BlobStager.openReverseDelta(long, long)
, or
HollowProducer.BlobStager.openHeader(long)
on this publisher.
publishArtifact
- the blob to publish