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 2018/09/27 10:36:51 UTC

[incubator-plc4x] branch master updated (d594ff6 -> b2f0fa3)

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

sruehl pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git.


    from d594ff6  [General] updated mockito and added assertj for easier testing.
     add 3d7494f  Introduced protocol layer to split requestItems to several requests.
     add a53cbbf  [General] some progress on the SingleItemToSingleRequestProtocol
     add 5afff50  [General] SingleItemToSingleRequestProtocol implemented ErrorHandler
     add 33e754b  [General] SingleItemToSingleRequestProtocol small Bugfixes
     add e36b6b2  [General] SingleItemToSingleRequestProtocol added abstract javadoc
     add 6703953  [General] SingleItemToSingleRequestProtocol replace throwing of           RuntimeExceptions with log statements.
     add 327cc6f  [General] updated mockito and added assertj for easier testing.
     add b2f0fa3  [MODBUS/ADS] Integrate SingleItemToSingleRequestProtocol for now

No new revisions were added by this update.

Summary of changes:
 .../ads/connection/AdsSerialPlcConnection.java     |   2 +
 .../java/ads/connection/AdsTcpPlcConnection.java   |   2 +
 .../SingleItemToSingleRequestProtocol.java         | 335 +++++++++++++++++++++
 .../SingleItemToSingleRequestProtocolTest.java     | 290 ++++++++++++++++++
 .../modbus/connection/ModbusTcpPlcConnection.java  |   2 +
 .../plc4x/java/modbus/ManualPlc4XModbusTest.java   |  32 ++
 6 files changed, 663 insertions(+)
 create mode 100644 plc4j/protocols/driver-bases/base/src/main/java/org/apache/plc4x/java/base/protocol/SingleItemToSingleRequestProtocol.java
 create mode 100644 plc4j/protocols/driver-bases/base/src/test/java/org/apache/plc4x/java/base/protocol/SingleItemToSingleRequestProtocolTest.java