Microservices - Event-Driven Architecture
A developer wrote this code snippet for event communication:
eventBus.publish('UserCreated', userData);
userService.createUser(userData);
What is the main problem with this approach regarding decoupling?