Rajamagal

Rajamagal (transl. King's daughter) is an Indian Tamil-language drama airing on Zee Tamil. It premiered on 28 October 2019.[1] The show stars Iraa Agarwal and Riyas. [2][3][4]

Rajamagal
GenreSoap opera
Directed byJ Vijayabaskar
Starring
Country of originIndia
Original language(s)Tamil
Production
Producer(s)RK Manohar
Camera setupMulti-camera
Running timeapprox. 25-27 minutes
Production company(s)Rajammal creations
Release
Original networkZee Tamil
Original release28 October 2019 (2019-10-28) 
present
External links
Website

Synopsis

Sivagami, a polite lady who has an elder brother Rajarajan. He has married an arrogant lady Bairavi, who refuses Sivagami and her husband due to her aunt Kanchana's plan. Sivagami and Bairavi were pregnant in same month. Bairavi wish to want a baby boy, but she gave birth to a girl baby. While Sivagami gave birth to a boy baby. As Bairavi wish to be fulfill, Sivagami swapped the babies.

Cast

Main

  • Riyas as Vishwa
    • The main protagonist of the series, a silent and a calm boy
  • Iraa Agarwal as Thulasi
    • A notty and a brave girl, who was the aunt daughter of Vishwa and his love interest
  • Sathya Sai as Kanaka Lakshmi
    • Vishwa's fiancee, who comes with an idea to marry Vishwa

Recurring

  • Vanaja as Bairavi
    • Foster mother of Vishwa and biological mother of Thulasi
  • Gayathri Priya as Sivagami
    • Foster mother of Thulasi and biological mother of Vishwa
  • Parthan Siva as Parthiban
    • Sivagami's husband, who were the foster father of Thulasi and biological father of Vishwa
  • Barath Kalyan as Rajarajan
    • Bairavi's husband and Sivagami's brother, who were the foster father of Vishwa and biological father of Thulasi
  • Shanthi Williams (Episode 1-111) and Balambika (Episode 112-present) as Kanchana
    • Thulasi and Vishwa's grandmother, who want to separate Rajarajan and Parthiban's family
  • "Puthuyugam Anchor" Meenakshi (Episode 1-97) and Visalakshi Manikandan (Episode 98-present) as Sathyavathi
    • Bairavi's faithfull house servent

Origin

Rajamagal is an official remake of the Zee Telugu serial Raktha Sambandham.[5]

International broadcast

The series was released on 28 October 2019 on Zee Tamil and Zee Tamil HD. The show was also broadcast internationally on the network's international channels.

gollark: Anyway, good news systemd-dislikers, I made an EXCELLENT and AMAZING replacement using the RUST programming language.
gollark: I have DashMap in here because of some vague dream of concurrently doing... stuff.
gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```
gollark: Well, I guess that's systemd replaced.
gollark: I can define a service in a TOML file and it's automatically restarted on exit and all.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.