What is the difference between docker pause and docker unpause?

The docker pause command suspends all processes in the specified containers. We can apply this command , if the container is in running state
The docker unpause command un-suspends all processes in the specified containers. We can apply this command , if the container is in pause state

docker pause <container name>

docker unpause <container name>