This is an automated email from the ASF dual-hosted git repository. jxue pushed a commit to branch metaclient in repository https://gitbox.apache.org/repos/asf/helix.git
commit f16a523e03e88ff410b7b8ddbe2cec075b0d6956 Author: mapeng <[email protected]> AuthorDate: Fri Jun 2 13:53:21 2023 -0400 DataRecord Serializer --- .../recipes/lock/DataRecordSerializer.java | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/meta-client/src/main/java/org/apache/helix/metaclient/recipes/lock/DataRecordSerializer.java b/meta-client/src/main/java/org/apache/helix/metaclient/recipes/lock/DataRecordSerializer.java new file mode 100644 index 000000000..6fee7bdea --- /dev/null +++ b/meta-client/src/main/java/org/apache/helix/metaclient/recipes/lock/DataRecordSerializer.java @@ -0,0 +1,32 @@ +package org.apache.helix.metaclient.recipes.lock; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + */ + +import org.apache.helix.metaclient.datamodel.DataRecord; +import org.apache.helix.zookeeper.datamodel.ZNRecord; +import org.apache.helix.zookeeper.datamodel.serializer.ZNRecordSerializer; + +public class DataRecordSerializer extends ZNRecordSerializer { + @Override + public Object deserialize(byte[] bytes) { + Object o = super.deserialize(bytes); + return new DataRecord((ZNRecord) o); + } +}
