How do I detach a Partition from another Partition

0 votes
asked Sep 18, 2020 in Question / help by Hobo Joe
I would like to detach the "Another" partition and place it to the right of the "DataConsumption" partition. Can anyone help?

@startuml

Partition Another {
    :nut;
}

Partition DataConsumption {

    while (m_Running)

        while (consume)
        
            if (current PTS) then (yes)
                :accumulate;
                note left
                append data to current PTS
                data buffer.
                end note
            else (NEW PTS)
                : create Emsg;
                note right
                Use current PTS metadata
                to fill in details.
                end note
                : Enque emsg;
                : clear current PTS buffer;
            endif
        end while
    end while
        : exit;
}
@enduml

1 Answer

0 votes
answered Sep 23, 2020 by The-Lu (63,920 points)

Hello H.,

  • What do you want precisely?

You can split the partition, but I doesn't know if it's that you want; Here is a proposal:


[→ See on PlantUML server]

If that can help,
Regards,
Th.

...