Method
onCreateRequest
(final WaveCreationEvent event, final Set<ParticipantId> participantSet)
Source from the content-addressed store, hash-verified
| 406 | new WaveCreationEventHandler() { |
| 407 | |
| 408 | @Override |
| 409 | public void onCreateRequest(final WaveCreationEvent event, final Set<ParticipantId> participantSet) { |
| 410 | LOG.info("WaveCreationEvent received"); |
| 411 | if (channel == null) { |
| 412 | throw new DefaultException("Spaghetti attack. Create occured before login"); |
| 413 | } |
| 414 | openWave(WaveRef.of(idGenerator.newWaveId()), true, participantSet); |
| 415 | } |
| 416 | }); |
| 417 | |
| 418 | //setupConnectionIndicator(); |
Callers
nothing calls this directly
Tested by
no test coverage detected