software.amazon.kinesis.leases.MultiStreamLease Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amazon-kinesis-client Show documentation
Show all versions of amazon-kinesis-client Show documentation
The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
from Amazon Kinesis.
/*
* Copyright 2020 Amazon.com, Inc. or its affiliates.
* Licensed under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package software.amazon.kinesis.leases;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import lombok.Setter;
import lombok.experimental.Accessors;
import org.apache.commons.lang3.Validate;
import static com.google.common.base.Verify.verifyNotNull;
@Setter
@NoArgsConstructor
@Getter
@Accessors(fluent = true)
@EqualsAndHashCode(callSuper = true)
public class MultiStreamLease extends Lease {
@NonNull private String streamIdentifier;
@NonNull private String shardId;
public MultiStreamLease(MultiStreamLease other) {
super(other);
streamIdentifier(other.streamIdentifier);
shardId(other.shardId);
}
@Override
public void update(Lease other) {
MultiStreamLease casted = validateAndCast(other);
super.update(casted);
streamIdentifier(casted.streamIdentifier);
shardId(casted.shardId);
}
public static String getLeaseKey(String streamIdentifier, String shardId) {
verifyNotNull(streamIdentifier, "streamIdentifier should not be null");
verifyNotNull(shardId, "shardId should not be null");
return streamIdentifier + ":" + shardId;
}
/**
* Returns a deep copy of this object. Type-unsafe - there aren't good mechanisms for copy-constructing generics.
*
* @return A deep copy of this object.
*/
@Override
public MultiStreamLease copy() {
return new MultiStreamLease(this);
}
/**
* Validate and cast the lease to MultiStream lease
* @param lease
* @return MultiStreamLease
*/
public static MultiStreamLease validateAndCast(Lease lease) {
Validate.isInstanceOf(MultiStreamLease.class, lease);
return (MultiStreamLease) lease;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy