You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2022/05/23 12:43:41 UTC

[plc4x] branch develop updated: feat(plc4go): expose Serializable

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 1422a4e910 feat(plc4go): expose Serializable
1422a4e910 is described below

commit 1422a4e9100045be7c6e821bc8583f11ae585b2e
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Mon May 23 14:43:33 2022 +0200

    feat(plc4go): expose Serializable
---
 plc4go/utils/exposedUtils.go | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/plc4go/utils/exposedUtils.go b/plc4go/utils/exposedUtils.go
index 4f34c89d3e..cc93c63c1c 100644
--- a/plc4go/utils/exposedUtils.go
+++ b/plc4go/utils/exposedUtils.go
@@ -25,6 +25,11 @@ import (
 	"github.com/apache/plc4x/plc4go/internal/spi/utils"
 )
 
+// Serializable indicates that something is serializable
+type Serializable interface {
+	utils.Serializable
+}
+
 // ReadBufferByteBased is a byte based read buffer
 type ReadBufferByteBased interface {
 	utils.ReadBufferByteBased