-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs] : add 'guidelines' in 'plugins/interfaces' (#1721)
* [docs] : add 'guidelines' in 'plugins/interfaces' * [Documentation] small update * [doc] add practical part 1 * [doc] small fixes to new guideliness section * [doc] add queryinterface example to practicalities section * [doc] add more sections to interface guideliness * [doc] fix interface guidelines links * [doc] update interface guideliness after review P. Wielders * [Documentation] Update interface guideliness * [doc] move files to assets --------- Co-authored-by: Marcel Fransen <[email protected]> Co-authored-by: MFransen69 <[email protected]>
- Loading branch information
1 parent
a0a7547
commit f6e5980
Showing
6 changed files
with
462 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
plantuml | ||
|
||
@startuml | ||
|
||
skin rose | ||
|
||
participant Plugin order 30 | ||
|
||
Client1 -> Plugin: SetA(10) | ||
CLient2 -> Plugin: GetA() | ||
CLient2 -> Plugin: GetB() | ||
Client1 -> Plugin: SetB(20) | ||
|
||
|
||
@enduml | ||
|
||
|
||
@startuml | ||
|
||
skin rose | ||
|
||
participant Plugin order 30 | ||
|
||
Client1 -> Plugin: SetA(10) | ||
Activate Plugin | ||
Plugin -> Client3: AChanged() | ||
Activate Client3 | ||
Client2 -> Plugin: SetA(20) | ||
Client3 -> Plugin: GetA() | ||
Deactivate Client3 | ||
Plugin --> Client1 | ||
Deactivate Plugin | ||
|
||
@enduml | ||
|
||
@startuml | ||
|
||
skin rose | ||
|
||
participant Plugin order 30 | ||
participant PinProvider order 40 | ||
|
||
Client -> Plugin: GetPin(Callback) | ||
Plugin --> Client | ||
Plugin -> Plugin: GetPin | ||
Activate Plugin | ||
Plugin -> PinProvider: RetrievePin | ||
Activate PinProvider | ||
PinProvider --> Plugin: pin | ||
Deactivate PinProvider | ||
Plugin -> Client: Callback(pin) | ||
Deactivate Plugin | ||
|
||
|
||
@enduml |
Oops, something went wrong.