You have to use a service to communicate between your two components.
See https://angular.io/docs/ts/latest/cookbook/component-communication.html#!#bidirectional-service
Your service has a property event. So the component A can emit the event and the component B can subscribe to it.
Use RxJS to emit and subscribe to your event.
If my answer does not satisfy you. Please tell me and I will work on it.