# Multicasting

In RxJS observables are cold, or unicast by default. These operators can make an observable hot, or multicast, allowing side-effects to be shared among multiple subscribers.

## Contents

* [publish](/learn-rxjs/operators/multicasting/publish.md)
* [multicast](/learn-rxjs/operators/multicasting/multicast.md)
* [share](/learn-rxjs/operators/multicasting/share.md) ⭐
* [shareReplay](/learn-rxjs/operators/multicasting/sharereplay.md) ⭐

⭐ - *commonly used*

### Additional Resources

* [Hot vs Cold Observables](https://medium.com/@benlesh/hot-vs-cold-observables-f8094ed53339#.8x9uam5rg) 📰 - Ben Lesh
* [Unicast v Multicast](https://github.com/zenparsing/es-observable/issues/66) 📰 - GitHub Discussion
* [Demystifying Hot and Cold Observables](https://egghead.io/lessons/rxjs-demystifying-cold-and-hot-observables-in-rxjs) 🎥 - André Staltz


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.learnrxjs.io/learn-rxjs/operators/multicasting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
