MPI constructor

const MPI({
  1. String? name = '',
  2. String? version = '0.0.0',
  3. String? proto = 'grpc',
  4. String? codec = 'json',
  5. int? flags = 0,
  6. int? timeout = 12000,
  7. int? retries = 3,
  8. String? idc = '',
  9. String? zone = '',
  10. String? cluster = '',
  11. String? cell = '',
  12. String? group = '',
  13. String? address = '',
})

Creates a new MPI instance.

Implementation

const MPI({
  this.name = '',
  this.version = '0.0.0',
  this.proto = 'grpc',
  this.codec = 'json',
  this.flags = 0,
  this.timeout = 12000,
  this.retries = 3,
  this.idc = '',
  this.zone = '',
  this.cluster = '',
  this.cell = '',
  this.group = '',
  this.address = '',
});