# File lib/ruote/exp/fe_participant.rb, line 326
    def do_resume(msg)

      return if h.state != 'paused'

      h['state'] = nil
      replies = h.delete('paused_replies') || []

      do_persist || return

      if replies.empty?
        @context.storage.put_msg(
          'dispatch_resume',
          'fei' => h.fei,
          'participant_name' => h.participant_name,
          'participant' => h.participant
        ) unless h['breakpoint']
      else
        replies.each { |m| @context.storage.put_msg(m.delete('action'), m) }
          # trigger replies
      end
    end