mirror of
https://github.com/corda/corda.git
synced 2025-04-03 17:39:09 +00:00
Updates tutorial to reflect new template structure.
This commit is contained in:
parent
a75cfde3c7
commit
516eb37c42
@ -40,7 +40,7 @@ FlowLogic
|
||||
---------
|
||||
All flows must subclass ``FlowLogic``. You then define the steps taken by the flow by overriding ``FlowLogic.call``.
|
||||
|
||||
Let's define our ``IOUFlow`` in either ``TemplateFlow.java`` or ``App.kt``. Delete the two existing flows in the
|
||||
Let's define our ``IOUFlow`` in either ``Initiator.java`` or ``Flows.kt``. Delete the two existing flows in the
|
||||
template (``Initiator`` and ``Responder``), and replace them with the following:
|
||||
|
||||
.. container:: codeset
|
||||
@ -55,7 +55,7 @@ template (``Initiator`` and ``Responder``), and replace them with the following:
|
||||
:start-after: DOCSTART 01
|
||||
:end-before: DOCEND 01
|
||||
|
||||
If you're following along in Java, you'll also need to rename ``TemplateFlow.java`` to ``IOUFlow.java``. Let's walk
|
||||
If you're following along in Java, you'll also need to rename ``Initiator.java`` to ``IOUFlow.java``. Let's walk
|
||||
through this code step-by-step.
|
||||
|
||||
We've defined our own ``FlowLogic`` subclass that overrides ``FlowLogic.call``. ``FlowLogic.call`` has a return type
|
||||
@ -156,4 +156,4 @@ built-in flow called ``FinalityFlow``. ``FinalityFlow`` completely automates the
|
||||
Progress so far
|
||||
---------------
|
||||
Our flow, and our CorDapp, are now ready! We have now defined a flow that we can start on our node to completely
|
||||
automate the process of issuing an IOU onto the ledger. All that's left is to spin up some nodes and test our CorDapp.
|
||||
automate the process of issuing an IOU onto the ledger. All that's left is to spin up some nodes and test our CorDapp.
|
||||
|
Loading…
x
Reference in New Issue
Block a user