diff --git a/models/Adapter.model b/models/Adapter.model index 3bb6134..b78e32f 100644 --- a/models/Adapter.model +++ b/models/Adapter.model @@ -2,17 +2,17 @@ fishingBoat := "TheFishingBoatIsSailing" } -channel CIO1 { - out fishingBoat(fb:Str, sail(message:Str)) == message +channel CIO{ + out captain(cp:Str, row(s:Str)) == s } channel C1{ - in fishingBoat(fb2:Str, sail(s2)) == s2 + in captain(cp1:Str, row(s2)) == s2 out fishingBoatAdapter(fa:Str, sail(s2)) == s2 } channel C2{ - in fishingBoatAdapter(fa2:Str, row(s3)) == s3 - out captain(cp1:Str, row(s3)) == s3 + in fishingBoatAdapter(fa2:Str, sail(s3)) == s3 + out fishingBoat(fb2:Str, sail(s3)) == s3 }