-
Kotlin
Class delegation in Kotlin
In software engineering, the delegation pattern is an object-oriented design pattern that allows object composition to achieve the same code…
Read More » -
Kotlin
Saving transactions where only a subset of parties are signers
It took a while for me to think of a title that could summarise the contents of this post without…
Read More » -
Core Java
Running a Java class as a subprocess
Running a Java class (not a jar) as a subprocess is something I needed to do this week. More precisely,…
Read More » -
Kotlin
Extending Flows to customise transaction validation
Through the use of flow extension, nodes running the same CorDapp can include extra validation to ensure that a transaction…
Read More » -
Kotlin
Running a Kotlin class as a subprocess
Last week I wrote a post on running a Java class as a subprocess. That post was triggered by my…
Read More » -
Kotlin
Preventing invalid spending of broadcasted states
Corda is super flexible and will allow you to put together the code needed to write many complex workflows. This…
Read More » -
Kotlin
Kotlin primitive and object arrays
I initially set out to write this post because I was playing around with some reflection code and thought I…
Read More » -
Core Java
Removing elements from a Map in Java
Very short and simple post on removing elements from a Map in Java. We will be focusing on removing multiple…
Read More » -
Enterprise Java
Extending and Overriding Flows from external CorDapps
Corda 4 was released last week (21st Feb) bringing with it a ton of new features to make Corda more…
Read More »